mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-11 16:00:17 -07:00
Merge branch 'main' into enh-update-wxwidgets
# Conflicts: # src/nanosvg/README.txt # src/nanosvg/nanosvg.h # src/nanosvg/nanosvgrast.h # src/slic3r/GUI/BitmapCache.cpp # src/slic3r/GUI/BitmapCache.hpp # src/slic3r/GUI/ImGuiWrapper.cpp
This commit is contained in:
commit
53bc949580
467 changed files with 29654 additions and 17853 deletions
56
.github/workflows/build_all.yml
vendored
Normal file
56
.github/workflows/build_all.yml
vendored
Normal file
|
|
@ -0,0 +1,56 @@
|
||||||
|
name: Build all
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'deps/**'
|
||||||
|
- 'src/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
- 'localization/**'
|
||||||
|
- 'resources/**'
|
||||||
|
- ".github/workflows/build_*.yml"
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- 'deps/**'
|
||||||
|
- 'src/**'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'version.inc'
|
||||||
|
- ".github/workflows/build_*.yml"
|
||||||
|
|
||||||
|
workflow_dispatch: # allows for manual dispatch
|
||||||
|
inputs:
|
||||||
|
build-deps-only:
|
||||||
|
description: 'Only build dependencies (bypasses caching)'
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_all:
|
||||||
|
name: Build All
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
- os: windows-latest
|
||||||
|
- os: macos-12
|
||||||
|
arch: x86_64
|
||||||
|
- os: macos-12
|
||||||
|
arch: arm64
|
||||||
|
uses: ./.github/workflows/build_check_cache.yml
|
||||||
|
with:
|
||||||
|
os: ${{ matrix.os }}
|
||||||
|
arch: ${{ matrix.arch }}
|
||||||
|
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||||
|
secrets: inherit
|
||||||
58
.github/workflows/build_check_cache.yml
vendored
Normal file
58
.github/workflows/build_check_cache.yml
vendored
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
name: Check Cache
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
os:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
arch:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
build-deps-only:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check_cache: # determines if there is a cache and outputs variables used in caching process
|
||||||
|
name: Check Cache
|
||||||
|
runs-on: ${{ inputs.os }}
|
||||||
|
outputs:
|
||||||
|
cache-key: ${{ steps.set_outputs.outputs.cache-key }}
|
||||||
|
cache-path: ${{ steps.set_outputs.outputs.cache-path }}
|
||||||
|
valid-cache: ${{ steps.cache_deps.outputs.cache-hit }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: set outputs
|
||||||
|
id: set_outputs
|
||||||
|
env:
|
||||||
|
underscore-arch: ${{ inputs.os == 'macos-12' && '_' || ''}}${{ inputs.os == 'macos-12' && inputs.arch || '' }} # if is macos, make a string that does "_{arch}", else output nothing
|
||||||
|
dash-arch: ${{ inputs.os == 'macos-12' && '-' || ''}}${{ inputs.os == 'macos-12' && inputs.arch || '' }} # if is macos, make a string that does "-{arch}", else output nothing
|
||||||
|
dep-folder-name: ${{ (inputs.os == 'windows-latest' || inputs.os == 'macos-12') && 'OrcaSlicer_dep' || 'destdir' }}
|
||||||
|
output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
|
||||||
|
run: |
|
||||||
|
echo cache-key=${{ runner.os }}${{ env.dash-arch }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
|
||||||
|
echo cache-path=${{ github.workspace }}/deps/build${{ env.underscore-arch }}/${{ env.dep-folder-name }}${{ env.underscore-arch }} >> ${{ env.output-cmd }}
|
||||||
|
|
||||||
|
- name: load cache
|
||||||
|
id: cache_deps
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ${{ steps.set_outputs.outputs.cache-path }}
|
||||||
|
key: ${{ steps.set_outputs.outputs.cache-key }}
|
||||||
|
lookup-only: true
|
||||||
|
|
||||||
|
build_deps: # call next step
|
||||||
|
name: Build Deps
|
||||||
|
needs: [check_cache]
|
||||||
|
uses: ./.github/workflows/build_deps.yml
|
||||||
|
with:
|
||||||
|
cache-key: ${{ needs.check_cache.outputs.cache-key }}
|
||||||
|
cache-path: ${{ needs.check_cache.outputs.cache-path }}
|
||||||
|
valid-cache: ${{ needs.check_cache.outputs.valid-cache == 'true' }}
|
||||||
|
os: ${{ inputs.os }}
|
||||||
|
arch: ${{ inputs.arch }}
|
||||||
|
build-deps-only: ${{ inputs.build-deps-only }}
|
||||||
|
secrets: inherit
|
||||||
129
.github/workflows/build_deps.yml
vendored
129
.github/workflows/build_deps.yml
vendored
|
|
@ -1,60 +1,62 @@
|
||||||
# name: Build Deps
|
|
||||||
name: Build deps
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
workflow_call:
|
||||||
branches:
|
inputs:
|
||||||
- main
|
cache-key:
|
||||||
paths:
|
required: true
|
||||||
- 'deps/**'
|
type: string
|
||||||
- .github/workflows/build_deps.yml
|
cache-path:
|
||||||
push:
|
required: true
|
||||||
branches:
|
type: string
|
||||||
- main
|
valid-cache:
|
||||||
paths:
|
required: true
|
||||||
- 'deps/**'
|
type: boolean
|
||||||
- .github/workflows/build_deps.yml
|
os:
|
||||||
|
required: true
|
||||||
concurrency:
|
type: string
|
||||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
arch:
|
||||||
cancel-in-progress: true
|
required: false
|
||||||
|
type: string
|
||||||
|
build-deps-only:
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_deps:
|
build_deps:
|
||||||
strategy:
|
name: Build Deps
|
||||||
fail-fast: false
|
if: inputs.build-deps-only || inputs.valid-cache != true
|
||||||
matrix:
|
runs-on: ${{ inputs.os }}
|
||||||
include:
|
env:
|
||||||
- os: ubuntu-20.04
|
date:
|
||||||
- os: windows-latest
|
|
||||||
- os: macos-12
|
|
||||||
arch: x86_64
|
|
||||||
- os: macos-12
|
|
||||||
arch: arm64
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
# Setup the environment
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: load cached deps
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ${{ inputs.cache-path }}
|
||||||
|
key: ${{ inputs.cache-key }}
|
||||||
|
|
||||||
- name: setup dev on Windows
|
- name: setup dev on Windows
|
||||||
if: matrix.os == 'Windows'
|
if: inputs.os == 'windows-latest'
|
||||||
uses: microsoft/setup-msbuild@v1.1
|
uses: microsoft/setup-msbuild@v1.1
|
||||||
|
|
||||||
- name: Get the date on Ubuntu and macOS
|
- name: Get the date on Ubuntu and macOS
|
||||||
if: matrix.os != 'windows-latest'
|
if: inputs.os != 'windows-latest'
|
||||||
id: get-date-unix
|
|
||||||
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Get the date on Windows
|
- name: Get the date on Windows
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
id: get-date-windows
|
|
||||||
run: echo "date=$(Get-Date -Format 'yyyyMMdd')" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
run: echo "date=$(Get-Date -Format 'yyyyMMdd')" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
|
|
||||||
|
# Build Dependencies
|
||||||
- name: Build on Windows
|
- name: Build on Windows
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
choco install strawberryperl
|
choco install strawberryperl
|
||||||
|
|
@ -64,26 +66,18 @@ jobs:
|
||||||
.\build_release_vs2022.bat pack
|
.\build_release_vs2022.bat pack
|
||||||
cd ${{ github.workspace }}/deps/build
|
cd ${{ github.workspace }}/deps/build
|
||||||
|
|
||||||
- name: Build on Mac x86_64
|
- name: Build on Mac ${{ inputs.arch }}
|
||||||
if: matrix.os == 'macos-12' && matrix.arch == 'x86_64'
|
if: inputs.os == 'macos-12'
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
brew install cmake git gettext automake
|
brew install cmake git gettext automake
|
||||||
mkdir -p ${{ github.workspace }}/deps/build_x86_64
|
brew list
|
||||||
mkdir -p ${{ github.workspace }}/deps/build_x86_64/OrcaSlicer_dep_x86_64
|
mkdir -p ${{ github.workspace }}/deps/build_${{ inputs.arch }}
|
||||||
./build_release_macos.sh -dp -a x86_64
|
mkdir -p ${{ github.workspace }}/deps/build_${{ inputs.arch }}/OrcaSlicer_dep_${{ inputs.arch }}
|
||||||
|
./build_release_macos.sh -dp -a ${{ inputs.arch }}
|
||||||
- name: Build on Mac arm64
|
|
||||||
if: matrix.os == 'macos-12' && matrix.arch == 'arm64'
|
|
||||||
working-directory: ${{ github.workspace }}
|
|
||||||
run: |
|
|
||||||
brew install cmake git gettext automake
|
|
||||||
mkdir -p ${{ github.workspace }}/deps/build_arm64
|
|
||||||
mkdir -p ${{ github.workspace }}/deps/build_arm64/OrcaSlicer_dep_arm64
|
|
||||||
./build_release_macos.sh -dp -a arm64
|
|
||||||
|
|
||||||
- name: Build on Ubuntu
|
- name: Build on Ubuntu
|
||||||
if: matrix.os == 'ubuntu-20.04'
|
if: inputs.os == 'ubuntu-20.04'
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
|
@ -100,31 +94,38 @@ jobs:
|
||||||
cd deps/build
|
cd deps/build
|
||||||
tar -czvf OrcaSlicer_dep_ubuntu_$(date +"%Y%m%d").tar.gz destdir
|
tar -czvf OrcaSlicer_dep_ubuntu_$(date +"%Y%m%d").tar.gz destdir
|
||||||
|
|
||||||
- name: Upload Mac arm64 artifacts
|
|
||||||
if: matrix.os == 'macos-12' && matrix.arch == 'arm64'
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: OrcaSlicer_dep_mac_arm64_${{ env.date }}
|
|
||||||
path: ${{ github.workspace }}/deps/build_arm64/OrcaSlicer_dep*.tar.gz
|
|
||||||
|
|
||||||
- name: Upload Mac x86_64 artifacts
|
# Upload Artifacts
|
||||||
if: matrix.os == 'macos-12' && matrix.arch == 'x86_64'
|
- name: Upload Mac ${{ inputs.arch }} artifacts
|
||||||
|
if: inputs.os == 'macos-12'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_dep_mac_x86_64_${{ env.date }}
|
name: OrcaSlicer_dep_mac_${{ inputs.arch }}_${{ env.date }}
|
||||||
path: ${{ github.workspace }}/deps/build_x86_64/OrcaSlicer_dep*.tar.gz
|
path: ${{ github.workspace }}/deps/build_${{ inputs.arch }}/OrcaSlicer_dep*.tar.gz
|
||||||
|
|
||||||
- name: Upload Windows artifacts
|
- name: Upload Windows artifacts
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_dep_win64_${{ env.date }}
|
name: OrcaSlicer_dep_win64_${{ env.date }}
|
||||||
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep*.zip
|
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep*.zip
|
||||||
|
|
||||||
- name: Upload Ubuntu artifacts
|
- name: Upload Ubuntu artifacts
|
||||||
if: matrix.os == 'ubuntu-20.04'
|
if: inputs.os == 'ubuntu-20.04'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_dep_ubuntu_${{ env.date }}
|
name: OrcaSlicer_dep_ubuntu_${{ env.date }}
|
||||||
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep_ubuntu_*.tar.gz
|
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep_ubuntu_*.tar.gz
|
||||||
|
|
||||||
|
build_orca:
|
||||||
|
name: Build OrcaSlicer
|
||||||
|
needs: [build_deps]
|
||||||
|
if: ${{ !cancelled() && !inputs.build-deps-only && (inputs.valid-cache == true && needs.build_deps.result == 'skipped') || (inputs.valid-cache != true && success()) }}
|
||||||
|
uses: ./.github/workflows/build_orca.yml
|
||||||
|
with:
|
||||||
|
cache-key: ${{ inputs.cache-key }}
|
||||||
|
cache-path: ${{ inputs.cache-path }}
|
||||||
|
os: ${{ inputs.os }}
|
||||||
|
arch: ${{ inputs.arch }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
|
|
|
||||||
241
.github/workflows/build_orca.yml
vendored
241
.github/workflows/build_orca.yml
vendored
|
|
@ -1,51 +1,33 @@
|
||||||
name: Build OrcaSlicer
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
branches:
|
inputs:
|
||||||
- main
|
cache-key:
|
||||||
paths:
|
required: true
|
||||||
- 'src/**'
|
type: string
|
||||||
- '**/CMakeLists.txt'
|
cache-path:
|
||||||
- 'version.inc'
|
required: true
|
||||||
- 'localization/**'
|
type: string
|
||||||
- 'resources/**'
|
os:
|
||||||
- ".github/workflows/build_orca.yml"
|
required: true
|
||||||
|
type: string
|
||||||
pull_request:
|
arch:
|
||||||
branches:
|
required: false
|
||||||
- main
|
type: string
|
||||||
paths:
|
|
||||||
- 'src/**'
|
|
||||||
- '**/CMakeLists.txt'
|
|
||||||
- 'version.inc'
|
|
||||||
- ".github/workflows/build_orca.yml"
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_orca:
|
build_orca:
|
||||||
strategy:
|
name: Build OrcaSlicer
|
||||||
fail-fast: false
|
runs-on: ${{ inputs.os }}
|
||||||
matrix:
|
env:
|
||||||
include:
|
date:
|
||||||
- os: ubuntu-20.04
|
ver:
|
||||||
- os: windows-latest
|
|
||||||
- os: macos-12
|
|
||||||
arch: x86_64
|
|
||||||
- os: macos-12
|
|
||||||
arch: arm64
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Get the version and date on Ubuntu and macOS
|
- name: Get the version and date on Ubuntu and macOS
|
||||||
if: matrix.os != 'windows-latest'
|
if: inputs.os != 'windows-latest'
|
||||||
id: get-version-unix
|
|
||||||
run: |
|
run: |
|
||||||
ver=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2)
|
ver=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2)
|
||||||
echo "ver=$ver" >> $GITHUB_ENV
|
echo "ver=$ver" >> $GITHUB_ENV
|
||||||
|
|
@ -53,8 +35,7 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: Get the version and date on Windows
|
- name: Get the version and date on Windows
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
id: get-version-windows
|
|
||||||
run: |
|
run: |
|
||||||
echo "date=$(Get-Date -Format 'yyyyMMdd')" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
echo "date=$(Get-Date -Format 'yyyyMMdd')" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
||||||
# Extract the version from the file
|
# Extract the version from the file
|
||||||
|
|
@ -66,49 +47,29 @@ jobs:
|
||||||
echo "date: ${{ env.date }} version: $ver"
|
echo "date: ${{ env.date }} version: $ver"
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
|
- name: load cached deps
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ${{ inputs.cache-path }}
|
||||||
|
key: ${{ inputs.cache-key }}
|
||||||
|
|
||||||
# Mac
|
# Mac
|
||||||
- name: Install tools mac
|
- name: Install tools mac
|
||||||
if: matrix.os == 'macos-12'
|
if: inputs.os == 'macos-12'
|
||||||
run: |
|
run: |
|
||||||
brew install cmake git gettext zstd tree
|
brew install cmake git gettext zstd tree
|
||||||
mkdir -p ${{ github.workspace }}/deps/build_${{matrix.arch}}
|
mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}
|
||||||
mkdir -p ${{ github.workspace }}/deps/build_${{matrix.arch}}/OrcaSlicer_dep_${{matrix.arch}}
|
mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}/OrcaSlicer_dep_${{inputs.arch}}
|
||||||
|
|
||||||
# - name: build deps
|
|
||||||
# if: matrix.os == 'macos-12'
|
|
||||||
# id: cache_deps
|
|
||||||
# uses: actions/cache@v3
|
|
||||||
# env:
|
|
||||||
# cache-name: ${{ runner.os }}-cache-orcaslicer_deps_${{matrix.arch}}
|
|
||||||
# with:
|
|
||||||
# path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep
|
|
||||||
# key: build-${{ env.cache-name }}
|
|
||||||
|
|
||||||
# - if: ${{ steps.cache_deps.outputs.cache-hit != 'true' }}
|
|
||||||
# name: build deps
|
|
||||||
# working-directory: ${{ github.workspace }}
|
|
||||||
# continue-on-error: true
|
|
||||||
# run: ./build_release_macos.sh -d -a ${{matrix.arch}}
|
|
||||||
- name: Download and extract deps
|
|
||||||
if: matrix.os == 'macos-12'
|
|
||||||
working-directory: ${{ github.workspace }}
|
|
||||||
run: |
|
|
||||||
curl -LJO https://github.com/SoftFever/OrcaSlicer_deps/releases/download/OrcaSlicer_deps_Oct2023/OrcaSlicer_dep_mac_${{matrix.arch}}_20231008.tar.gz
|
|
||||||
tar -zvxf ./OrcaSlicer_dep_mac_${{matrix.arch}}_20231008.tar.gz -C ${{ github.workspace }}/deps/build_${{matrix.arch}}
|
|
||||||
chown -R $(id -u):$(id -g) ${{ github.workspace }}/deps/build_${{matrix.arch}}
|
|
||||||
tree ${{ github.workspace }}/deps/build_${{matrix.arch}}
|
|
||||||
rm ./OrcaSlicer_dep_mac_${{matrix.arch}}_20231008.tar.gz
|
|
||||||
|
|
||||||
|
|
||||||
- name: Build slicer mac
|
- name: Build slicer mac
|
||||||
if: matrix.os == 'macos-12'
|
if: inputs.os == 'macos-12'
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
./build_release_macos.sh -s -n -a ${{matrix.arch}}
|
./build_release_macos.sh -s -n -a ${{inputs.arch}}
|
||||||
|
|
||||||
# Thanks to RaySajuuk, it's working now
|
# Thanks to RaySajuuk, it's working now
|
||||||
- name: Sign app and notary
|
- name: Sign app and notary
|
||||||
if: github.ref == 'refs/heads/main' && matrix.os == 'macos-12'
|
if: github.ref == 'refs/heads/main' && inputs.os == 'macos-12'
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
env:
|
env:
|
||||||
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
|
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
|
||||||
|
|
@ -125,109 +86,86 @@ jobs:
|
||||||
security import $CERTIFICATE_PATH -P $P12_PASSWORD -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
|
security import $CERTIFICATE_PATH -P $P12_PASSWORD -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
|
||||||
security list-keychain -d user -s $KEYCHAIN_PATH
|
security list-keychain -d user -s $KEYCHAIN_PATH
|
||||||
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $P12_PASSWORD $KEYCHAIN_PATH
|
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $P12_PASSWORD $KEYCHAIN_PATH
|
||||||
codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" ${{ github.workspace }}/build_${{matrix.arch}}/OrcaSlicer/OrcaSlicer.app
|
codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer/OrcaSlicer.app
|
||||||
ln -s /Applications ${{ github.workspace }}/build_${{matrix.arch}}/OrcaSlicer/Applications
|
ln -s /Applications ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer/Applications
|
||||||
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build_${{matrix.arch}}/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_${{matrix.arch}}_V${{ env.ver }}.dmg
|
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_${{inputs.arch}}_V${{ env.ver }}.dmg
|
||||||
codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" OrcaSlicer_Mac_${{matrix.arch}}_V${{ env.ver }}.dmg
|
codesign --deep --force --verbose --options runtime --timestamp --entitlements ${{ github.workspace }}/scripts/disable_validation.entitlements --sign "$CERTIFICATE_ID" OrcaSlicer_Mac_${{inputs.arch}}_V${{ env.ver }}.dmg
|
||||||
xcrun notarytool store-credentials "notarytool-profile" --apple-id "${{ secrets.APPLE_DEV_ACCOUNT }}" --team-id "${{ secrets.TEAM_ID }}" --password "${{ secrets.APP_PWD }}"
|
xcrun notarytool store-credentials "notarytool-profile" --apple-id "${{ secrets.APPLE_DEV_ACCOUNT }}" --team-id "${{ secrets.TEAM_ID }}" --password "${{ secrets.APP_PWD }}"
|
||||||
xcrun notarytool submit "OrcaSlicer_Mac_${{matrix.arch}}_V${{ env.ver }}.dmg" --keychain-profile "notarytool-profile" --wait
|
xcrun notarytool submit "OrcaSlicer_Mac_${{inputs.arch}}_V${{ env.ver }}.dmg" --keychain-profile "notarytool-profile" --wait
|
||||||
xcrun stapler staple OrcaSlicer_Mac_${{matrix.arch}}_V${{ env.ver }}.dmg
|
xcrun stapler staple OrcaSlicer_Mac_${{inputs.arch}}_V${{ env.ver }}.dmg
|
||||||
|
|
||||||
- name: Create DMG without notary
|
- name: Create DMG without notary
|
||||||
if: github.ref != 'refs/heads/main' && matrix.os == 'macos-12'
|
if: github.ref != 'refs/heads/main' && inputs.os == 'macos-12'
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
ln -s /Applications ${{ github.workspace }}/build_${{matrix.arch}}/OrcaSlicer/Applications
|
ln -s /Applications ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer/Applications
|
||||||
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build_${{matrix.arch}}/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_${{matrix.arch}}_V${{ env.ver }}.dmg
|
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_${{inputs.arch}}_V${{ env.ver }}.dmg
|
||||||
|
|
||||||
- name: Upload artifacts mac
|
- name: Upload artifacts mac
|
||||||
if: matrix.os == 'macos-12'
|
if: inputs.os == 'macos-12'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_Mac_${{matrix.arch}}_V${{ env.ver }}
|
name: OrcaSlicer_Mac_${{inputs.arch}}_V${{ env.ver }}
|
||||||
path: ${{ github.workspace }}/OrcaSlicer_Mac_${{matrix.arch}}_V${{ env.ver }}.dmg
|
path: ${{ github.workspace }}/OrcaSlicer_Mac_${{inputs.arch}}_V${{ env.ver }}.dmg
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
- name: setup MSVC
|
- name: setup MSVC
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
uses: microsoft/setup-msbuild@v1.1
|
uses: microsoft/setup-msbuild@v1.1
|
||||||
|
|
||||||
- name: Install nsis
|
- name: Install nsis
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
run: |
|
run: |
|
||||||
dir "C:/Program Files (x86)/Windows Kits/10/Include"
|
dir "C:/Program Files (x86)/Windows Kits/10/Include"
|
||||||
choco install nsis
|
choco install nsis
|
||||||
|
|
||||||
- name: download deps
|
|
||||||
if: matrix.os == 'windows-latest'
|
|
||||||
shell: powershell
|
|
||||||
run: '(new-object System.Net.WebClient).DownloadFile("https://github.com/SoftFever/OrcaSlicer_deps/releases/download/OrcaSlicer_deps_Oct2023/OrcaSlicer_dep_win64_20230810_vs2022.zip", "$env:temp\OrcaSlicer_dep_win64_20230810_vs2022.zip")'
|
|
||||||
|
|
||||||
- name: maker dir
|
|
||||||
if: matrix.os == 'windows-latest'
|
|
||||||
working-directory: ${{ github.workspace }}
|
|
||||||
run: |
|
|
||||||
mkdir ${{ github.workspace }}/deps/build
|
|
||||||
mkdir ${{ github.workspace }}/deps/build/OrcaSlicer_dep
|
|
||||||
|
|
||||||
- name: extract deps
|
|
||||||
if: matrix.os == 'windows-latest'
|
|
||||||
working-directory: ${{ github.workspace }}/deps/build
|
|
||||||
shell: cmd
|
|
||||||
run: '"C:/Program Files/7-Zip/7z.exe" x %temp%\OrcaSlicer_dep_win64_20230810_vs2022.zip'
|
|
||||||
|
|
||||||
# - name: build deps
|
|
||||||
# if: matrix.os == 'windows-latest'
|
|
||||||
# id: cache_deps
|
|
||||||
# uses: actions/cache@v3
|
|
||||||
# env:
|
|
||||||
# cache-name: ${{ runner.os }}-cache-orcaslicer_deps
|
|
||||||
# with:
|
|
||||||
# path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep
|
|
||||||
# key: ${{ runner.os }}-build-${{ env.cache-name }}
|
|
||||||
|
|
||||||
# - if: ${{ steps.cache_deps.outputs.cache-hit != 'true' }}
|
|
||||||
# name: build deps
|
|
||||||
# working-directory: ${{ github.workspace }}
|
|
||||||
# continue-on-error: true
|
|
||||||
# run: .\build_release_vs2022.bat deps
|
|
||||||
|
|
||||||
# - run: Get-ChildItem ${{ github.workspace }}/deps/build/ -Exclude OrcaSlicer_dep | Remove-Item -Recurse -Force
|
|
||||||
|
|
||||||
- name: Build slicer Win
|
- name: Build slicer Win
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
run: .\build_release_vs2022.bat slicer
|
run: .\build_release_vs2022.bat slicer
|
||||||
|
|
||||||
- name: Create installer Win
|
- name: Create installer Win
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
working-directory: ${{ github.workspace }}/build
|
working-directory: ${{ github.workspace }}/build
|
||||||
run: |
|
run: |
|
||||||
cpack -G NSIS
|
cpack -G NSIS
|
||||||
|
|
||||||
# - name: pack app
|
- name: Pack app
|
||||||
# if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
# working-directory: ${{ github.workspace }}/build
|
working-directory: ${{ github.workspace }}/build
|
||||||
# shell: cmd
|
shell: cmd
|
||||||
# run: '"C:/Program Files/7-Zip/7z.exe" a -tzip OrcaSlicer_dev_build.zip ${{ github.workspace }}/build/OrcaSlicer'
|
run: '"C:/Program Files/7-Zip/7z.exe" a -tzip OrcaSlicer_Windows_V${{ env.ver }}_portable.zip ${{ github.workspace }}/build/OrcaSlicer'
|
||||||
|
|
||||||
|
- name: Pack PDB
|
||||||
|
if: inputs.os == 'windows-latest'
|
||||||
|
working-directory: ${{ github.workspace }}/build/src/Release
|
||||||
|
shell: cmd
|
||||||
|
run: '"C:/Program Files/7-Zip/7z.exe" a -m0=lzma2 -mx9 Debug_PDB_V${{ env.ver }}_for_developers_only.7z *.pdb'
|
||||||
|
|
||||||
- name: Upload artifacts Win zip
|
- name: Upload artifacts Win zip
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_Windows_V${{ env.ver }}_portable
|
name: OrcaSlicer_Windows_V${{ env.ver }}_portable
|
||||||
path: ${{ github.workspace }}/build/OrcaSlicer
|
path: ${{ github.workspace }}/build/OrcaSlicer_Windows_V${{ env.ver }}_portable.zip
|
||||||
|
|
||||||
- name: Upload artifacts Win installer
|
- name: Upload artifacts Win installer
|
||||||
if: matrix.os == 'windows-latest'
|
if: inputs.os == 'windows-latest'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_Windows_V${{ env.ver }}
|
name: OrcaSlicer_Windows_V${{ env.ver }}
|
||||||
path: ${{ github.workspace }}/build/OrcaSlicer*.exe
|
path: ${{ github.workspace }}/build/OrcaSlicer*.exe
|
||||||
# Ubuntu
|
|
||||||
|
|
||||||
|
- name: Upload artifacts Win PDB
|
||||||
|
if: inputs.os == 'windows-latest'
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: PDB
|
||||||
|
path: ${{ github.workspace }}/build/src/Release/Debug_PDB_V${{ env.ver }}_for_developers_only.7z
|
||||||
|
|
||||||
|
# Ubuntu
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
if: matrix.os == 'ubuntu-20.04'
|
if: inputs.os == 'ubuntu-20.04'
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y autoconf build-essential cmake curl eglexternalplatform-dev \
|
sudo apt-get install -y autoconf build-essential cmake curl eglexternalplatform-dev \
|
||||||
|
|
@ -237,51 +175,24 @@ jobs:
|
||||||
libwebkit2gtk-4.0-dev libxkbcommon-dev locales locales-all m4 pkgconf sudo wayland-protocols wget
|
libwebkit2gtk-4.0-dev libxkbcommon-dev locales locales-all m4 pkgconf sudo wayland-protocols wget
|
||||||
|
|
||||||
- name: Install dependencies from BuildLinux.sh
|
- name: Install dependencies from BuildLinux.sh
|
||||||
if: matrix.os == 'ubuntu-20.04'
|
if: inputs.os == 'ubuntu-20.04'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: sudo ./BuildLinux.sh -ur
|
run: sudo ./BuildLinux.sh -ur
|
||||||
|
|
||||||
- name: Fix permissions
|
- name: Fix permissions
|
||||||
if: matrix.os == 'ubuntu-20.04'
|
if: inputs.os == 'ubuntu-20.04'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: sudo chown $USER -R ./
|
run: sudo chown $USER -R ./
|
||||||
# - name: Build deps
|
|
||||||
# if: matrix.os == 'ubuntu-20.04'
|
|
||||||
# id: cache_deps
|
|
||||||
# uses: actions/cache@v3
|
|
||||||
# env:
|
|
||||||
# cache-name: ${{ runner.os }}-cache-orcaslicer_deps_x64
|
|
||||||
# with:
|
|
||||||
# path: ${{ github.workspace }}/deps/build/destdir
|
|
||||||
# key: build-${{ env.cache-name }}
|
|
||||||
|
|
||||||
# - if: ${{ steps.cache_deps.outputs.cache-hit != 'true' }}
|
|
||||||
# name: Build deps
|
|
||||||
# working-directory: ${{ github.workspace }}
|
|
||||||
# continue-on-error: true
|
|
||||||
# run: ./BuildLinux.sh -dr
|
|
||||||
- name: Download and extract deps
|
|
||||||
if: matrix.os == 'ubuntu-20.04'
|
|
||||||
working-directory: ${{ github.workspace }}
|
|
||||||
run: |
|
|
||||||
mkdir -p ${{ github.workspace }}/deps/build
|
|
||||||
mkdir -p ${{ github.workspace }}/deps/build/destdir
|
|
||||||
curl -LJO https://github.com/SoftFever/OrcaSlicer_deps/releases/download/OrcaSlicer_deps_Oct2023/OrcaSlicer_dep_ubuntu_20231008.zip
|
|
||||||
unzip ./OrcaSlicer_dep_ubuntu_20231008.zip -d ${{ github.workspace }}/deps/build/destdir
|
|
||||||
chown -R $(id -u):$(id -g) ${{ github.workspace }}/deps/build/destdir
|
|
||||||
ls -l ${{ github.workspace }}/deps/build/destdir
|
|
||||||
rm OrcaSlicer_dep_ubuntu_20231008.zip
|
|
||||||
|
|
||||||
|
|
||||||
- name: Build slicer
|
- name: Build slicer
|
||||||
if: matrix.os == 'ubuntu-20.04'
|
if: inputs.os == 'ubuntu-20.04'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
./BuildLinux.sh -isr
|
./BuildLinux.sh -isr
|
||||||
chmod +x ./build/OrcaSlicer_ubu64.AppImage
|
chmod +x ./build/OrcaSlicer_ubu64.AppImage
|
||||||
|
|
||||||
- name: Upload artifacts Ubuntu
|
- name: Upload artifacts Ubuntu
|
||||||
if: matrix.os == 'ubuntu-20.04'
|
if: inputs.os == 'ubuntu-20.04'
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_Linux_V${{ env.ver }}
|
name: OrcaSlicer_Linux_V${{ env.ver }}
|
||||||
|
|
|
||||||
5
.github/workflows/orca_bot.yml
vendored
5
.github/workflows/orca_bot.yml
vendored
|
|
@ -13,11 +13,12 @@ jobs:
|
||||||
- uses: actions/stale@v5
|
- uses: actions/stale@v5
|
||||||
with:
|
with:
|
||||||
days-before-issue-stale: 90
|
days-before-issue-stale: 90
|
||||||
days-before-issue-close: 14
|
days-before-issue-close: 7
|
||||||
operations-per-run: 1000
|
operations-per-run: 1000
|
||||||
stale-issue-label: "stale"
|
stale-issue-label: "stale"
|
||||||
|
ascending: true
|
||||||
stale-issue-message: "GitHub bot: this issue is stale because it has been open for 90 days with no activity."
|
stale-issue-message: "GitHub bot: this issue is stale because it has been open for 90 days with no activity."
|
||||||
close-issue-message: "GitHub bot: This issue was closed because it has been inactive for 14 days since being marked as stale."
|
close-issue-message: "GitHub bot: This issue was closed because it has been inactive for 7 days since being marked as stale."
|
||||||
days-before-pr-stale: -1
|
days-before-pr-stale: -1
|
||||||
days-before-pr-close: -1
|
days-before-pr-close: -1
|
||||||
remove-issue-stale-when-updated: true
|
remove-issue-stale-when-updated: true
|
||||||
|
|
|
||||||
1
deps/CMakeLists.txt
vendored
1
deps/CMakeLists.txt
vendored
|
|
@ -133,6 +133,7 @@ else()
|
||||||
${_gen}
|
${_gen}
|
||||||
CMAKE_ARGS
|
CMAKE_ARGS
|
||||||
-DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR}/usr/local
|
-DCMAKE_INSTALL_PREFIX:STRING=${DESTDIR}/usr/local
|
||||||
|
-DCMAKE_PREFIX_PATH:STRING=${DESTDIR}/usr/local
|
||||||
-DBUILD_SHARED_LIBS:BOOL=OFF
|
-DBUILD_SHARED_LIBS:BOOL=OFF
|
||||||
${_cmake_osx_arch}
|
${_cmake_osx_arch}
|
||||||
"${_configs_line}"
|
"${_configs_line}"
|
||||||
|
|
|
||||||
3
deps/MPFR/MPFR.cmake
vendored
3
deps/MPFR/MPFR.cmake
vendored
|
|
@ -30,7 +30,8 @@ else ()
|
||||||
URL_HASH SHA256=cf4f4b2d80abb79e820e78c8077b6725bbbb4e8f41896783c899087be0e94068
|
URL_HASH SHA256=cf4f4b2d80abb79e820e78c8077b6725bbbb4e8f41896783c899087be0e94068
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/MPFR
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/MPFR
|
||||||
BUILD_IN_SOURCE ON
|
BUILD_IN_SOURCE ON
|
||||||
CONFIGURE_COMMAND env "CFLAGS=${_gmp_ccflags}" "CXXFLAGS=${_gmp_ccflags}" ./configure ${_cross_compile_arg} --prefix=${DESTDIR}/usr/local --enable-shared=no --enable-static=yes --with-gmp=${DESTDIR}/usr/local ${_gmp_build_tgt}
|
CONFIGURE_COMMAND autoreconf -f -i &&
|
||||||
|
env "CFLAGS=${_gmp_ccflags}" "CXXFLAGS=${_gmp_ccflags}" ./configure ${_cross_compile_arg} --prefix=${DESTDIR}/usr/local --enable-shared=no --enable-static=yes --with-gmp=${DESTDIR}/usr/local ${_gmp_build_tgt}
|
||||||
BUILD_COMMAND make -j
|
BUILD_COMMAND make -j
|
||||||
INSTALL_COMMAND make install
|
INSTALL_COMMAND make install
|
||||||
DEPENDS dep_GMP
|
DEPENDS dep_GMP
|
||||||
|
|
|
||||||
2
deps/OpenSSL/OpenSSL.cmake
vendored
2
deps/OpenSSL/OpenSSL.cmake
vendored
|
|
@ -19,7 +19,7 @@ if(WIN32)
|
||||||
set(_install_cmd nmake install_sw )
|
set(_install_cmd nmake install_sw )
|
||||||
else()
|
else()
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
set(_conf_cmd ./Configure )
|
set(_conf_cmd export MACOSX_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET} && ./Configure )
|
||||||
else()
|
else()
|
||||||
set(_conf_cmd "./config")
|
set(_conf_cmd "./config")
|
||||||
endif()
|
endif()
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ Bellow is a reference configuration for Klipper.
|
||||||
[heater_generic chamber_heater]
|
[heater_generic chamber_heater]
|
||||||
heater_pin:PB10
|
heater_pin:PB10
|
||||||
max_power:1.0
|
max_power:1.0
|
||||||
# Note: here the temperature sensor should be the sensor you are using for chamber temperature, not the PTC sensor
|
# Orca note: here the temperature sensor should be the sensor you are using for chamber temperature, not the PTC sensor
|
||||||
sensor_type:NTC 100K MGB18-104F39050L32
|
sensor_type:NTC 100K MGB18-104F39050L32
|
||||||
sensor_pin:PA1
|
sensor_pin:PA1
|
||||||
control = pid
|
control = pid
|
||||||
|
|
@ -43,6 +43,8 @@ gcode:
|
||||||
M117 Chamber heating cancelled
|
M117 Chamber heating cancelled
|
||||||
{% else %}
|
{% else %}
|
||||||
SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={s}
|
SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={s}
|
||||||
|
# Orca: uncomment the following line if you want to use heat bed to assist chamber heating
|
||||||
|
# M140 S100
|
||||||
TEMPERATURE_WAIT SENSOR="heater_generic chamber_heater" MINIMUM={s-1} MAXIMUM={s+1}
|
TEMPERATURE_WAIT SENSOR="heater_generic chamber_heater" MINIMUM={s-1} MAXIMUM={s+1}
|
||||||
M117 Chamber at target temperature
|
M117 Chamber at target temperature
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -8,8 +8,9 @@ msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||||
"PO-Revision-Date: 2023-10-26 16:47+0900\n"
|
"PO-Revision-Date: 2023-11-19 11:26+0900\n"
|
||||||
"Last-Translator: Hotsolidinfill\n"
|
"Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply."
|
||||||
|
"github.com>, crwusiz <crwusiz@naver.com>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: ko_KR\n"
|
"Language: ko_KR\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -653,6 +654,9 @@ msgid ""
|
||||||
"Please note, application settings will be lost, but printer profiles will "
|
"Please note, application settings will be lost, but printer profiles will "
|
||||||
"not be affected."
|
"not be affected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"OrcaSlicer 구성 파일이 손상되어 구문을 분석할 수 없습니다.\n"
|
||||||
|
"OrcaSlicer가 구성 파일을 다시 생성하려고 시도했습니다.\n"
|
||||||
|
"응용 프로그램 설정은 손실되지만 프린터 프로필은 영향을 받지 않습니다."
|
||||||
|
|
||||||
msgid "Rebuild"
|
msgid "Rebuild"
|
||||||
msgstr "재빌드"
|
msgstr "재빌드"
|
||||||
|
|
@ -853,16 +857,16 @@ msgid "Load..."
|
||||||
msgstr "불러오기..."
|
msgstr "불러오기..."
|
||||||
|
|
||||||
msgid "Orca Cube"
|
msgid "Orca Cube"
|
||||||
msgstr "Orca Cube"
|
msgstr "Orca 큐브"
|
||||||
|
|
||||||
msgid "3DBenchy"
|
msgid "3DBenchy"
|
||||||
msgstr "3DBenchy"
|
msgstr "3D 벤치"
|
||||||
|
|
||||||
msgid "Autodesk FDM Test"
|
msgid "Autodesk FDM Test"
|
||||||
msgstr "Autodesk FDM Test"
|
msgstr "Autodesk FDM 테스트"
|
||||||
|
|
||||||
msgid "Voron Cube"
|
msgid "Voron Cube"
|
||||||
msgstr "Voron Cube"
|
msgstr "Voron 큐브"
|
||||||
|
|
||||||
msgid "Cube"
|
msgid "Cube"
|
||||||
msgstr "정육면체"
|
msgstr "정육면체"
|
||||||
|
|
@ -1351,7 +1355,7 @@ msgid "Infill density(%)"
|
||||||
msgstr "내부 채움 밀도(%)"
|
msgstr "내부 채움 밀도(%)"
|
||||||
|
|
||||||
msgid "Auto Brim"
|
msgid "Auto Brim"
|
||||||
msgstr "자동 챙(브림)"
|
msgstr "자동 브림"
|
||||||
|
|
||||||
msgid "Auto"
|
msgid "Auto"
|
||||||
msgstr "자동"
|
msgstr "자동"
|
||||||
|
|
@ -1360,16 +1364,16 @@ msgid "Mouse ear"
|
||||||
msgstr "생쥐 귀"
|
msgstr "생쥐 귀"
|
||||||
|
|
||||||
msgid "Outer brim only"
|
msgid "Outer brim only"
|
||||||
msgstr "외부 챙만"
|
msgstr "외부 브림만"
|
||||||
|
|
||||||
msgid "Inner brim only"
|
msgid "Inner brim only"
|
||||||
msgstr "내부 챙만"
|
msgstr "내부 브림만"
|
||||||
|
|
||||||
msgid "Outer and inner brim"
|
msgid "Outer and inner brim"
|
||||||
msgstr "내부와 외부 챙"
|
msgstr "내부와 외부 브림"
|
||||||
|
|
||||||
msgid "No-brim"
|
msgid "No-brim"
|
||||||
msgstr "챙 비활성화"
|
msgstr "브림 비활성화"
|
||||||
|
|
||||||
msgid "Outer wall speed"
|
msgid "Outer wall speed"
|
||||||
msgstr "외벽 속도"
|
msgstr "외벽 속도"
|
||||||
|
|
@ -1378,7 +1382,7 @@ msgid "Plate"
|
||||||
msgstr "플레이트"
|
msgstr "플레이트"
|
||||||
|
|
||||||
msgid "Brim"
|
msgid "Brim"
|
||||||
msgstr "챙(브림)"
|
msgstr "브림"
|
||||||
|
|
||||||
msgid "Object/Part Setting"
|
msgid "Object/Part Setting"
|
||||||
msgstr "개체/부품 설정"
|
msgstr "개체/부품 설정"
|
||||||
|
|
@ -1948,10 +1952,10 @@ msgid "PA Profile"
|
||||||
msgstr "PA 프로필"
|
msgstr "PA 프로필"
|
||||||
|
|
||||||
msgid "Factor K"
|
msgid "Factor K"
|
||||||
msgstr "Factor K"
|
msgstr "K 계수"
|
||||||
|
|
||||||
msgid "Factor N"
|
msgid "Factor N"
|
||||||
msgstr "Factor N"
|
msgstr "N 계수"
|
||||||
|
|
||||||
msgid "Setting Virtual slot information while printing is not supported"
|
msgid "Setting Virtual slot information while printing is not supported"
|
||||||
msgstr "출력 중에는 가상 슬롯 정보 설정이 지원되지 않습니다"
|
msgstr "출력 중에는 가상 슬롯 정보 설정이 지원되지 않습니다"
|
||||||
|
|
@ -2021,7 +2025,7 @@ msgid ""
|
||||||
"factor K input box."
|
"factor K input box."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"교정이 완료되었습니다. 당신의 고온 베드에서 아래 사진과 같이 가장 균일한 압"
|
"교정이 완료되었습니다. 당신의 고온 베드에서 아래 사진과 같이 가장 균일한 압"
|
||||||
"출 선을 찾아 왼쪽에 있는 값을 입력 상자의 Factor K에 채워주세요."
|
"출 선을 찾아 왼쪽에 있는 값을 입력 상자의 K 계수에 채워주세요."
|
||||||
|
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "저장"
|
msgstr "저장"
|
||||||
|
|
@ -2545,7 +2549,7 @@ msgid "Auto bed leveling"
|
||||||
msgstr "자동 베드 레벨링"
|
msgstr "자동 베드 레벨링"
|
||||||
|
|
||||||
msgid "Heatbed preheating"
|
msgid "Heatbed preheating"
|
||||||
msgstr "고온 베드 예열"
|
msgstr "베드 예열"
|
||||||
|
|
||||||
msgid "Sweeping XY mech mode"
|
msgid "Sweeping XY mech mode"
|
||||||
msgstr "스위핑 XY 기계 모드"
|
msgstr "스위핑 XY 기계 모드"
|
||||||
|
|
@ -2608,7 +2612,7 @@ msgid "Filament unloading"
|
||||||
msgstr "필라멘트 빼는 중"
|
msgstr "필라멘트 빼는 중"
|
||||||
|
|
||||||
msgid "Skip step pause"
|
msgid "Skip step pause"
|
||||||
msgstr "단계 일시정지 건너뛰기"
|
msgstr "단계 건너뛰기 일시중지"
|
||||||
|
|
||||||
msgid "Filament loading"
|
msgid "Filament loading"
|
||||||
msgstr "필라멘트 넣는 중"
|
msgstr "필라멘트 넣는 중"
|
||||||
|
|
@ -2894,7 +2898,7 @@ msgid "Retract"
|
||||||
msgstr "퇴출"
|
msgstr "퇴출"
|
||||||
|
|
||||||
msgid "Unretract"
|
msgid "Unretract"
|
||||||
msgstr "비퇴출(언리트렉트)"
|
msgstr "비퇴출"
|
||||||
|
|
||||||
msgid "Filament Changes"
|
msgid "Filament Changes"
|
||||||
msgstr "필라멘트 변경"
|
msgstr "필라멘트 변경"
|
||||||
|
|
@ -3041,7 +3045,7 @@ msgid "Avoid extrusion calibration region"
|
||||||
msgstr "압출 교정 영역을 피하십시오"
|
msgstr "압출 교정 영역을 피하십시오"
|
||||||
|
|
||||||
msgid "Align to Y axis"
|
msgid "Align to Y axis"
|
||||||
msgstr "Y축으로 정렬"
|
msgstr "Y축에 정렬"
|
||||||
|
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "추가"
|
msgstr "추가"
|
||||||
|
|
@ -3241,7 +3245,7 @@ msgid "will be closed before creating a new model. Do you want to continue?"
|
||||||
msgstr "새 모델을 생성하기 전에 닫힙니다. 계속하시겠습니까?"
|
msgstr "새 모델을 생성하기 전에 닫힙니다. 계속하시겠습니까?"
|
||||||
|
|
||||||
msgid "Slice plate"
|
msgid "Slice plate"
|
||||||
msgstr "슬라이스 플레이트"
|
msgstr "플레이트 슬라이스"
|
||||||
|
|
||||||
msgid "Print plate"
|
msgid "Print plate"
|
||||||
msgstr "플레이트 출력"
|
msgstr "플레이트 출력"
|
||||||
|
|
@ -3388,7 +3392,7 @@ msgid "Export all objects as STL"
|
||||||
msgstr "모든 개체를 STL로 내보내기"
|
msgstr "모든 개체를 STL로 내보내기"
|
||||||
|
|
||||||
msgid "Export Generic 3MF"
|
msgid "Export Generic 3MF"
|
||||||
msgstr "Generic 3MF 내보내기"
|
msgstr "일반 3MF 내보내기"
|
||||||
|
|
||||||
msgid "Export 3mf file without using some 3mf-extensions"
|
msgid "Export 3mf file without using some 3mf-extensions"
|
||||||
msgstr "3mf-extensions을 사용하지 않고 3mf 파일 내보내기"
|
msgstr "3mf-extensions을 사용하지 않고 3mf 파일 내보내기"
|
||||||
|
|
@ -3481,10 +3485,10 @@ msgid "Show object labels in 3D scene"
|
||||||
msgstr "3D 화면에 개체 이름표 표시"
|
msgstr "3D 화면에 개체 이름표 표시"
|
||||||
|
|
||||||
msgid "Show &Overhang"
|
msgid "Show &Overhang"
|
||||||
msgstr "돌출부 &보기"
|
msgstr "돌출부 보기"
|
||||||
|
|
||||||
msgid "Show object overhang highlight in 3D scene"
|
msgid "Show object overhang highlight in 3D scene"
|
||||||
msgstr "3D 장면에서 객체 오버행 하이라이트 표시"
|
msgstr "3D 장면에서 개체 오버행 하이라이트 표시"
|
||||||
|
|
||||||
msgid "Preferences"
|
msgid "Preferences"
|
||||||
msgstr "기본 설정"
|
msgstr "기본 설정"
|
||||||
|
|
@ -4014,7 +4018,7 @@ msgid "Silent"
|
||||||
msgstr "조용한"
|
msgstr "조용한"
|
||||||
|
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "스탠다드"
|
msgstr "표준"
|
||||||
|
|
||||||
msgid "Sport"
|
msgid "Sport"
|
||||||
msgstr "스포츠"
|
msgstr "스포츠"
|
||||||
|
|
@ -4506,7 +4510,7 @@ msgid ""
|
||||||
"clogged when printing this filament in a closed enclosure. Please open the "
|
"clogged when printing this filament in a closed enclosure. Please open the "
|
||||||
"front door and/or remove the upper glass."
|
"front door and/or remove the upper glass."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"현재의 고온 베드 온도가 상대적으로 높습니다. 닫힌 공간에서 이 필라멘트를 출력"
|
"현재 베드 온도가 상대적으로 높습니다. 닫힌 공간에서 이 필라멘트를 출력"
|
||||||
"할 때 노즐이 막힐 수 있습니다. 전면 도어를 열거나 상단 유리를 제거하세요."
|
"할 때 노즐이 막힐 수 있습니다. 전면 도어를 열거나 상단 유리를 제거하세요."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -4686,13 +4690,13 @@ msgid "Message"
|
||||||
msgstr "메시지"
|
msgstr "메시지"
|
||||||
|
|
||||||
msgid "Reload from:"
|
msgid "Reload from:"
|
||||||
msgstr "다음에서 다시 로드:"
|
msgstr "다음에서 새로고침:"
|
||||||
|
|
||||||
msgid "Unable to reload:"
|
msgid "Unable to reload:"
|
||||||
msgstr "다시 로드할 수 없음:"
|
msgstr "새로고침할 수 없음:"
|
||||||
|
|
||||||
msgid "Error during reload"
|
msgid "Error during reload"
|
||||||
msgstr "다시 로드 중 오류 발생"
|
msgstr "새로고침 중 오류가 발생했습니다."
|
||||||
|
|
||||||
msgid "Slicing"
|
msgid "Slicing"
|
||||||
msgstr "슬라이싱"
|
msgstr "슬라이싱"
|
||||||
|
|
@ -4998,13 +5002,13 @@ msgid "Units"
|
||||||
msgstr "단위"
|
msgstr "단위"
|
||||||
|
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr ""
|
msgstr "홈"
|
||||||
|
|
||||||
msgid "Default Page"
|
msgid "Default Page"
|
||||||
msgstr ""
|
msgstr "기본 페이지"
|
||||||
|
|
||||||
msgid "Set the page opened on startup."
|
msgid "Set the page opened on startup."
|
||||||
msgstr ""
|
msgstr "시작 시 열리는 페이지를 설정합니다."
|
||||||
|
|
||||||
msgid "Zoom to mouse position"
|
msgid "Zoom to mouse position"
|
||||||
msgstr "마우스 위치로 확대"
|
msgstr "마우스 위치로 확대"
|
||||||
|
|
@ -5023,10 +5027,10 @@ msgstr ""
|
||||||
"카메라 앵글을 사용합니다."
|
"카메라 앵글을 사용합니다."
|
||||||
|
|
||||||
msgid "Show splash screen"
|
msgid "Show splash screen"
|
||||||
msgstr ""
|
msgstr "스플래시 화면 표시"
|
||||||
|
|
||||||
msgid "Show the splash screen during startup."
|
msgid "Show the splash screen during startup."
|
||||||
msgstr ""
|
msgstr "시작하는 동안 스플래시 화면을 표시합니다."
|
||||||
|
|
||||||
msgid "Show \"Tip of the day\" notification after start"
|
msgid "Show \"Tip of the day\" notification after start"
|
||||||
msgstr "시작 후 \"오늘의 팁\" 알림 표시"
|
msgstr "시작 후 \"오늘의 팁\" 알림 표시"
|
||||||
|
|
@ -5616,7 +5620,7 @@ msgid ""
|
||||||
"Caution to use! Flow calibration on Textured PEI Plate may fail due to the "
|
"Caution to use! Flow calibration on Textured PEI Plate may fail due to the "
|
||||||
"scattered surface."
|
"scattered surface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"사용상의 주의! Textured PEI 플레이트의 유량 교정은 표면이 분산되어 실패할 수 "
|
"사용상의 주의! 텍스처 PEI 플레이트의 유량 교정은 표면이 분산되어 실패할 수 "
|
||||||
"있습니다."
|
"있습니다."
|
||||||
|
|
||||||
msgid "Automatic flow calibration using Micro Lidar"
|
msgid "Automatic flow calibration using Micro Lidar"
|
||||||
|
|
@ -5819,8 +5823,8 @@ msgstr ""
|
||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
"by right-click the empty position of build plate and choose \"Add "
|
||||||
"\"->\"Timelapse Wipe Tower\"."
|
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 닦기 타워\"를 추가하는 것이 좋"
|
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 닦기 타워\"를 추가하는 것이 좋"
|
||||||
"습니다\n"
|
"습니다\n"
|
||||||
|
|
@ -5870,7 +5874,7 @@ msgid "Set speed for external and internal bridges"
|
||||||
msgstr "외부 및 내부 다리 속도 설정"
|
msgstr "외부 및 내부 다리 속도 설정"
|
||||||
|
|
||||||
msgid "Travel speed"
|
msgid "Travel speed"
|
||||||
msgstr "이동 속도(트레블)"
|
msgstr "이동 속도"
|
||||||
|
|
||||||
msgid "Acceleration"
|
msgid "Acceleration"
|
||||||
msgstr "가속도"
|
msgstr "가속도"
|
||||||
|
|
@ -5923,7 +5927,7 @@ msgid "Reserved keywords found"
|
||||||
msgstr "예약어를 찾았습니다"
|
msgstr "예약어를 찾았습니다"
|
||||||
|
|
||||||
msgid "Setting Overrides"
|
msgid "Setting Overrides"
|
||||||
msgstr "설정 재정의(덮어쓰기)"
|
msgstr "설정 덮어쓰기"
|
||||||
|
|
||||||
msgid "Retraction"
|
msgid "Retraction"
|
||||||
msgstr "퇴출"
|
msgstr "퇴출"
|
||||||
|
|
@ -6094,7 +6098,7 @@ msgid "Change filament G-code"
|
||||||
msgstr "필라멘트 교체 G코드"
|
msgstr "필라멘트 교체 G코드"
|
||||||
|
|
||||||
msgid "Change extrusion role G-code"
|
msgid "Change extrusion role G-code"
|
||||||
msgstr ""
|
msgstr "압출 역할 G코드 변경"
|
||||||
|
|
||||||
msgid "Pause G-code"
|
msgid "Pause G-code"
|
||||||
msgstr "일시정지 G코드"
|
msgstr "일시정지 G코드"
|
||||||
|
|
@ -6720,7 +6724,7 @@ msgid "A new Network plug-in(%s) available, Do you want to install it?"
|
||||||
msgstr "새 네트워크 플러그인(%s)을 사용할 수 있습니다. 설치하시겠습니까?"
|
msgstr "새 네트워크 플러그인(%s)을 사용할 수 있습니다. 설치하시겠습니까?"
|
||||||
|
|
||||||
msgid "New version of Orca Slicer"
|
msgid "New version of Orca Slicer"
|
||||||
msgstr "뱀부 스튜디오의 새 버전"
|
msgstr "Orca Slicer의 새 버전"
|
||||||
|
|
||||||
msgid "Don't remind me of this version again"
|
msgid "Don't remind me of this version again"
|
||||||
msgstr "이 버전을 다시 알리지 않음"
|
msgstr "이 버전을 다시 알리지 않음"
|
||||||
|
|
@ -6920,13 +6924,13 @@ msgid "Outer wall"
|
||||||
msgstr "외벽"
|
msgstr "외벽"
|
||||||
|
|
||||||
msgid "Overhang wall"
|
msgid "Overhang wall"
|
||||||
msgstr "돌출벽(오버행)"
|
msgstr "돌출벽"
|
||||||
|
|
||||||
msgid "Sparse infill"
|
msgid "Sparse infill"
|
||||||
msgstr "드문 내부 채움"
|
msgstr "드문 내부 채움"
|
||||||
|
|
||||||
msgid "Internal solid infill"
|
msgid "Internal solid infill"
|
||||||
msgstr "내부 꽉찬 내부 채움"
|
msgstr "꽉찬 내부 채움"
|
||||||
|
|
||||||
msgid "Top surface"
|
msgid "Top surface"
|
||||||
msgstr "상단 표면"
|
msgstr "상단 표면"
|
||||||
|
|
@ -6968,7 +6972,7 @@ msgid "undefined error"
|
||||||
msgstr "정의되지 않은 오류"
|
msgstr "정의되지 않은 오류"
|
||||||
|
|
||||||
msgid "too many files"
|
msgid "too many files"
|
||||||
msgstr "너무 많은 파일"
|
msgstr "파일이 너무 많습니다"
|
||||||
|
|
||||||
msgid "file too large"
|
msgid "file too large"
|
||||||
msgstr "파일이 너무 큽니다"
|
msgstr "파일이 너무 큽니다"
|
||||||
|
|
@ -6986,7 +6990,7 @@ msgid "failed finding central directory"
|
||||||
msgstr "중앙 디렉토리를 찾지 못했습니다"
|
msgstr "중앙 디렉토리를 찾지 못했습니다"
|
||||||
|
|
||||||
msgid "not a ZIP archive"
|
msgid "not a ZIP archive"
|
||||||
msgstr "zip 아카이브가 아님"
|
msgstr "zip형식의 압축파일이 아님"
|
||||||
|
|
||||||
msgid "invalid header or corrupted"
|
msgid "invalid header or corrupted"
|
||||||
msgstr "잘못된 헤더이거나 손상됨"
|
msgstr "잘못된 헤더이거나 손상됨"
|
||||||
|
|
@ -7049,7 +7053,7 @@ msgid "file not found"
|
||||||
msgstr "파일을 찾을 수 없습니다"
|
msgstr "파일을 찾을 수 없습니다"
|
||||||
|
|
||||||
msgid "archive too large"
|
msgid "archive too large"
|
||||||
msgstr "아카이브가 너무 큼"
|
msgstr "압축파일이 너무 큽니다"
|
||||||
|
|
||||||
msgid "validation failed"
|
msgid "validation failed"
|
||||||
msgstr "검증에 실패했습니다"
|
msgstr "검증에 실패했습니다"
|
||||||
|
|
@ -7103,7 +7107,7 @@ msgid ""
|
||||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||||
"enabled."
|
"enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"타임랩스의 유연 모드는 \"개체별\" 출력순서가 활성화된 경우 지원되지 않습니다."
|
"타임랩스의 유연 모드는 \"개체별\" 출력순서가 활성화된 경우 지원되지 않습니다."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please select \"By object\" print sequence to print multiple objects in "
|
"Please select \"By object\" print sequence to print multiple objects in "
|
||||||
|
|
@ -7234,7 +7238,7 @@ msgid "Plate %d: %s does not support filament %s"
|
||||||
msgstr "%d: %s 플레이트는 %s 필라멘트를 지원하지 않습니다"
|
msgstr "%d: %s 플레이트는 %s 필라멘트를 지원하지 않습니다"
|
||||||
|
|
||||||
msgid "Generating skirt & brim"
|
msgid "Generating skirt & brim"
|
||||||
msgstr "스커트 & 챙(브림) 생성 중"
|
msgstr "스커트 & 브림 생성 중"
|
||||||
|
|
||||||
msgid "Exporting G-code"
|
msgid "Exporting G-code"
|
||||||
msgstr "G코드 내보내는 중"
|
msgstr "G코드 내보내는 중"
|
||||||
|
|
@ -7243,7 +7247,7 @@ msgid "Generating G-code"
|
||||||
msgstr "G코드 생성 중"
|
msgstr "G코드 생성 중"
|
||||||
|
|
||||||
msgid "Failed processing of the filename_format template."
|
msgid "Failed processing of the filename_format template."
|
||||||
msgstr "파일 이름 형식(filename_format) 템플릿 처리에 실패했습니다."
|
msgstr "파일 이름 형식 템플릿 처리에 실패했습니다."
|
||||||
|
|
||||||
msgid "Printable area"
|
msgid "Printable area"
|
||||||
msgstr "출력 가능 영역"
|
msgstr "출력 가능 영역"
|
||||||
|
|
@ -7390,7 +7394,7 @@ msgstr "벽 가로지름 방지"
|
||||||
|
|
||||||
msgid "Detour and avoid to travel across wall which may cause blob on surface"
|
msgid "Detour and avoid to travel across wall which may cause blob on surface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"벽을 가로질러 이동하지 않고 우회하여 표면에 방울(Blob) 발생을 방지합니다"
|
"벽을 가로질러 이동하지 않고 우회하여 표면에 방울 발생을 방지합니다"
|
||||||
|
|
||||||
msgid "Avoid crossing wall - Max detour length"
|
msgid "Avoid crossing wall - Max detour length"
|
||||||
msgstr "벽 가로지름 방지 - 최대 우회 길이"
|
msgstr "벽 가로지름 방지 - 최대 우회 길이"
|
||||||
|
|
@ -7446,7 +7450,7 @@ msgid "Initial layer"
|
||||||
msgstr "초기 레이어"
|
msgstr "초기 레이어"
|
||||||
|
|
||||||
msgid "Initial layer bed temperature"
|
msgid "Initial layer bed temperature"
|
||||||
msgstr "초기 레이어 베드(Bed) 온도"
|
msgstr "초기 레이어 베드 온도"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bed temperature of the initial layer. Value 0 means the filament does not "
|
"Bed temperature of the initial layer. Value 0 means the filament does not "
|
||||||
|
|
@ -7698,7 +7702,7 @@ msgid "Enable this option to slow printing down for different overhang degree"
|
||||||
msgstr "돌출부 정도에 따라 출력 속도를 낮추려면 이 옵션을 활성화합니다"
|
msgstr "돌출부 정도에 따라 출력 속도를 낮추려면 이 옵션을 활성화합니다"
|
||||||
|
|
||||||
msgid "Slow down for curled perimeters"
|
msgid "Slow down for curled perimeters"
|
||||||
msgstr "꺾여 있는 둘레에는 속도를 줄이세요"
|
msgstr "꺾여 있는 둘레에서 감속"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option to slow printing down in areas where potential curled "
|
"Enable this option to slow printing down in areas where potential curled "
|
||||||
|
|
@ -7730,51 +7734,51 @@ msgstr ""
|
||||||
"로 계산됩니다. 기본값은 150%입니다."
|
"로 계산됩니다. 기본값은 150%입니다."
|
||||||
|
|
||||||
msgid "Brim width"
|
msgid "Brim width"
|
||||||
msgstr "챙(브림) 너비"
|
msgstr "브림 너비"
|
||||||
|
|
||||||
msgid "Distance from model to the outermost brim line"
|
msgid "Distance from model to the outermost brim line"
|
||||||
msgstr "모델과 가장 바깥쪽 챙(브림) 선까지의 거리"
|
msgstr "모델과 가장 바깥쪽 브림 선까지의 거리"
|
||||||
|
|
||||||
msgid "Brim type"
|
msgid "Brim type"
|
||||||
msgstr "챙(브림) 유형"
|
msgstr "브림 유형"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"This controls the generation of the brim at outer and/or inner side of "
|
"This controls the generation of the brim at outer and/or inner side of "
|
||||||
"models. Auto means the brim width is analysed and calculated automatically."
|
"models. Auto means the brim width is analysed and calculated automatically."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"모델의 외부 그리고/또는 내부에서 챙(브림)의 생성을 제어합니다. 자동은 챙(브"
|
"모델의 외부 그리고/또는 내부에서 브림의 생성을 제어합니다. 자동은 브림"
|
||||||
"림) 너비가 자동으로 분석 및 계산됨을 의미합니다."
|
"너비가 자동으로 분석 및 계산됨을 의미합니다."
|
||||||
|
|
||||||
msgid "Brim-object gap"
|
msgid "Brim-object gap"
|
||||||
msgstr "챙(브림)-개체 간격"
|
msgstr "브림-개체 간격"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"A gap between innermost brim line and object can make brim be removed more "
|
"A gap between innermost brim line and object can make brim be removed more "
|
||||||
"easily"
|
"easily"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"가장 안쪽 챙(브림) 라인과 개체 사이에 간격을 주어 쉽게 챙(브림)을 제거 할 수 "
|
"가장 안쪽 브림 라인과 개체 사이에 간격을 주어 쉽게 브림을 제거 할 수 "
|
||||||
"있게 합니다"
|
"있게 합니다"
|
||||||
|
|
||||||
msgid "Brim ears"
|
msgid "Brim ears"
|
||||||
msgstr "챙(브림) 귀"
|
msgstr "브림 귀"
|
||||||
|
|
||||||
msgid "Only draw brim over the sharp edges of the model."
|
msgid "Only draw brim over the sharp edges of the model."
|
||||||
msgstr "모델의 날카로운 가장자리에만 챙을 그립니다."
|
msgstr "모델의 날카로운 가장자리에만 브림을 그립니다."
|
||||||
|
|
||||||
msgid "Brim ear max angle"
|
msgid "Brim ear max angle"
|
||||||
msgstr "챙(브림) 귀 최대 각도"
|
msgstr "브림 귀 최대 각도"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum angle to let a brim ear appear. \n"
|
"Maximum angle to let a brim ear appear. \n"
|
||||||
"If set to 0, no brim will be created. \n"
|
"If set to 0, no brim will be created. \n"
|
||||||
"If set to ~180, brim will be created on everything but straight sections."
|
"If set to ~180, brim will be created on everything but straight sections."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"챙 귀가 나타날 수 있는 최대 각도.\n"
|
"브림 귀가 나타날 수 있는 최대 각도.\n"
|
||||||
"0으로 설정하면 챙이 생성되지 않습니다.\n"
|
"0으로 설정하면 브림이 생성되지 않습니다.\n"
|
||||||
"~180으로 설정하면 직선 부분을 제외한 모든 부분에 챙이 생성됩니다."
|
"~180으로 설정하면 직선 부분을 제외한 모든 부분에 브림이 생성됩니다."
|
||||||
|
|
||||||
msgid "Brim ear detection radius"
|
msgid "Brim ear detection radius"
|
||||||
msgstr "챙 귀 감지 반경"
|
msgstr "브림 귀 감지 반경"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The geometry will be decimated before dectecting sharp angles. This "
|
"The geometry will be decimated before dectecting sharp angles. This "
|
||||||
|
|
@ -7908,13 +7912,13 @@ msgstr ""
|
||||||
"로 설정하고 다리에 지지대를 생성하지 않으려면 매우 큰 값으로 설정합니다."
|
"로 설정하고 다리에 지지대를 생성하지 않으려면 매우 큰 값으로 설정합니다."
|
||||||
|
|
||||||
msgid "End G-code"
|
msgid "End G-code"
|
||||||
msgstr "End G-code"
|
msgstr "종료 G코드"
|
||||||
|
|
||||||
msgid "End G-code when finish the whole printing"
|
msgid "End G-code when finish the whole printing"
|
||||||
msgstr "전체 출력이 끝날때의 End G-code"
|
msgstr "전체 출력이 끝날때의 종료 G코드"
|
||||||
|
|
||||||
msgid "End G-code when finish the printing of this filament"
|
msgid "End G-code when finish the printing of this filament"
|
||||||
msgstr "이 필라멘트의 출력이 끝날때의 End G-code"
|
msgstr "이 필라멘트의 출력이 끝날때의 종료 G코드"
|
||||||
|
|
||||||
msgid "Ensure vertical shell thickness"
|
msgid "Ensure vertical shell thickness"
|
||||||
msgstr "수직 쉘 두께 확보"
|
msgstr "수직 쉘 두께 확보"
|
||||||
|
|
@ -8331,7 +8335,7 @@ msgstr "가용성 재료"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Soluble material is commonly used to print support and support interface"
|
"Soluble material is commonly used to print support and support interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"가용성 재료는 일반적으로 지지대 및 지지대 접점(Interface)을 출력하는 데 사용"
|
"가용성 재료는 일반적으로 지지대 및 지지대 접점을 출력하는 데 사용"
|
||||||
"됩니다"
|
"됩니다"
|
||||||
|
|
||||||
msgid "Support material"
|
msgid "Support material"
|
||||||
|
|
@ -8340,7 +8344,7 @@ msgstr "지지대 재료"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Support material is commonly used to print support and support interface"
|
"Support material is commonly used to print support and support interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"지원 재료는 일반적으로 지지대 및 지지대 접점(Interface)을 출력하는 데 사용됩"
|
"지원 재료는 일반적으로 지지대 및 지지대 접점을 출력하는 데 사용됩"
|
||||||
"니다"
|
"니다"
|
||||||
|
|
||||||
msgid "Softening temperature"
|
msgid "Softening temperature"
|
||||||
|
|
@ -8615,10 +8619,10 @@ msgstr "팬 최대 속도 레이어"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" "
|
"팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" "
|
||||||
"의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 "
|
"의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 "
|
||||||
|
|
@ -8626,7 +8630,7 @@ msgstr ""
|
||||||
"\"close_fan_the_first_x_layers\" + 1 에서 최대 허용 속도로 가도됩니다."
|
"\"close_fan_the_first_x_layers\" + 1 에서 최대 허용 속도로 가도됩니다."
|
||||||
|
|
||||||
msgid "Support interface fan speed"
|
msgid "Support interface fan speed"
|
||||||
msgstr "지지대 접점(Interface) 팬 속도"
|
msgstr "지지대 접점 팬 속도"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"This fan speed is enforced during all support interfaces, to be able to "
|
"This fan speed is enforced during all support interfaces, to be able to "
|
||||||
|
|
@ -8729,16 +8733,16 @@ msgstr ""
|
||||||
"수 있는지를 결정합니다"
|
"수 있는지를 결정합니다"
|
||||||
|
|
||||||
msgid "Undefine"
|
msgid "Undefine"
|
||||||
msgstr "Undefine"
|
msgstr "알수없음"
|
||||||
|
|
||||||
msgid "Hardened steel"
|
msgid "Hardened steel"
|
||||||
msgstr "Hardened steel"
|
msgstr "경화강 노즐"
|
||||||
|
|
||||||
msgid "Stainless steel"
|
msgid "Stainless steel"
|
||||||
msgstr "Stainless steel"
|
msgstr "스테인레스강 노즐"
|
||||||
|
|
||||||
msgid "Brass"
|
msgid "Brass"
|
||||||
msgstr "Brass"
|
msgstr "동 노즐"
|
||||||
|
|
||||||
msgid "Nozzle HRC"
|
msgid "Nozzle HRC"
|
||||||
msgstr "노즐 록웰 경도(HRC)"
|
msgstr "노즐 록웰 경도(HRC)"
|
||||||
|
|
@ -8831,7 +8835,7 @@ msgid "The printer cost per hour"
|
||||||
msgstr "시간당 프린터 비용"
|
msgstr "시간당 프린터 비용"
|
||||||
|
|
||||||
msgid "money/h"
|
msgid "money/h"
|
||||||
msgstr "원/h"
|
msgstr "비용/시간"
|
||||||
|
|
||||||
msgid "Support control chamber temperature"
|
msgid "Support control chamber temperature"
|
||||||
msgstr "챔버 온도 제어 지원"
|
msgstr "챔버 온도 제어 지원"
|
||||||
|
|
@ -8854,7 +8858,7 @@ msgstr ""
|
||||||
"G코드 명령: M106 P3 S(0-255)"
|
"G코드 명령: M106 P3 S(0-255)"
|
||||||
|
|
||||||
msgid "G-code flavor"
|
msgid "G-code flavor"
|
||||||
msgstr "G코드 호환(Flavor)"
|
msgstr "G코드 유형"
|
||||||
|
|
||||||
msgid "What kind of gcode the printer is compatible with"
|
msgid "What kind of gcode the printer is compatible with"
|
||||||
msgstr "프린터와 호환되는 G코드 종류"
|
msgstr "프린터와 호환되는 G코드 종류"
|
||||||
|
|
@ -9176,7 +9180,7 @@ msgstr ""
|
||||||
"도/더 작은 너비) 압출로 또는 그 반대로 출력할 때 발생하는 급격한 압출 속도 변"
|
"도/더 작은 너비) 압출로 또는 그 반대로 출력할 때 발생하는 급격한 압출 속도 변"
|
||||||
"화를 완화합니다.\n"
|
"화를 완화합니다.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"이는 압출된 체적 유량(mm3/sec)이 시간에 따라 변할 수 있는 최대 속도를 정의합"
|
"이는 압출된 체적 유량(mm3/초)이 시간에 따라 변할 수 있는 최대 속도를 정의합"
|
||||||
"니다. 값이 높을수록 더 높은 압출 속도 변경이 허용되어 속도 전환이 더 빨라진다"
|
"니다. 값이 높을수록 더 높은 압출 속도 변경이 허용되어 속도 전환이 더 빨라진다"
|
||||||
"는 의미입니다.\n"
|
"는 의미입니다.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
@ -9186,10 +9190,10 @@ msgstr ""
|
||||||
"값이 필요하지 않습니다. 그러나 기능 속도가 크게 달라지는 특정 경우에는 약간"
|
"값이 필요하지 않습니다. 그러나 기능 속도가 크게 달라지는 특정 경우에는 약간"
|
||||||
"의 이점을 제공할 수 있습니다. 예를 들어 돌출부로 인해 급격하게 감속이 발생하"
|
"의 이점을 제공할 수 있습니다. 예를 들어 돌출부로 인해 급격하게 감속이 발생하"
|
||||||
"는 경우입니다. 이러한 경우 약 300-350mm3/s2의 높은 값이 권장됩니다. 이렇게 하"
|
"는 경우입니다. 이러한 경우 약 300-350mm3/s2의 높은 값이 권장됩니다. 이렇게 하"
|
||||||
"면 프레셔 어드밴스(Pressure advance)가 더 부드러운 유량 전환을 달성하는 데 도"
|
"면 프레셔 어드밴스가 더 부드러운 유량 전환을 달성하는 데 도"
|
||||||
"움이 될 만큼 충분히 매끄러워질 수 있기 때문입니다.\n"
|
"움이 될 만큼 충분히 매끄러워질 수 있기 때문입니다.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"프레셔 어드밴스(Pressure advance) 기능이 없는 느린 프린터의 경우 값을 훨씬 낮"
|
"프레셔 어드밴스 기능이 없는 느린 프린터의 경우 값을 훨씬 낮"
|
||||||
"게 설정해야 합니다. 10-15mm3/s2 값은 직접 구동 압출기의 좋은 시작점이고 보우"
|
"게 설정해야 합니다. 10-15mm3/s2 값은 직접 구동 압출기의 좋은 시작점이고 보우"
|
||||||
"덴 스타일의 경우 5-10mm3/s2입니다.\n"
|
"덴 스타일의 경우 5-10mm3/s2입니다.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
@ -9255,6 +9259,8 @@ msgid ""
|
||||||
"cooling is enabled, when printing overhangs and when feature speeds are not "
|
"cooling is enabled, when printing overhangs and when feature speeds are not "
|
||||||
"specified explicitly."
|
"specified explicitly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"보다 나은 레이어 냉각을 위해 속도를 늦출 때, 돌출부 출력 속도가 명시적으로 지"
|
||||||
|
"정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다."
|
||||||
|
|
||||||
msgid "Nozzle diameter"
|
msgid "Nozzle diameter"
|
||||||
msgstr "노즐 직경"
|
msgstr "노즐 직경"
|
||||||
|
|
@ -9395,7 +9401,7 @@ msgid "mm²"
|
||||||
msgstr "mm²"
|
msgstr "mm²"
|
||||||
|
|
||||||
msgid "Detect overhang wall"
|
msgid "Detect overhang wall"
|
||||||
msgstr "돌출벽(오버행 벽) 감지"
|
msgstr "돌출벽 감지"
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -9493,7 +9499,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"퇴출 길이에 비례한 닦기 전 퇴출량(닦기를 시작하기 전에 일부 필라멘트를 퇴출시"
|
"퇴출 길이에 비례한 닦기 전 퇴출량(닦기를 시작하기 전에 일부 필라멘트를 퇴출시"
|
||||||
"키면 노즐 끝에 녹아있는 소량의 필라멘트만 남게되어 추가 누수 위험이 줄어들 "
|
"키면 노즐 끝에 녹아있는 소량의 필라멘트만 남게되어 추가 누수 위험이 줄어들 "
|
||||||
"수 있습니다_by MMT)"
|
"수 있습니다)"
|
||||||
|
|
||||||
msgid "Retract when change layer"
|
msgid "Retract when change layer"
|
||||||
msgstr "레이어 변경 시 퇴출"
|
msgstr "레이어 변경 시 퇴출"
|
||||||
|
|
@ -9591,7 +9597,7 @@ msgid ""
|
||||||
"When the retraction is compensated after changing tool, the extruder will "
|
"When the retraction is compensated after changing tool, the extruder will "
|
||||||
"push this additional amount of filament."
|
"push this additional amount of filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"툴(Tool) 교체 후 퇴출이 보정되면 압출기가 보정된 양 만큼의 추가 필라멘트를 밀"
|
"툴 교체 후 퇴출이 보정되면 압출기가 보정된 양 만큼의 추가 필라멘트를 밀"
|
||||||
"어냅니다."
|
"어냅니다."
|
||||||
|
|
||||||
msgid "Retraction Speed"
|
msgid "Retraction Speed"
|
||||||
|
|
@ -9601,7 +9607,7 @@ msgid "Speed of retractions"
|
||||||
msgstr "퇴출 속도"
|
msgstr "퇴출 속도"
|
||||||
|
|
||||||
msgid "Deretraction Speed"
|
msgid "Deretraction Speed"
|
||||||
msgstr "퇴출 복귀(디-리트렉션) 속도"
|
msgstr "퇴출 복귀 속도"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Speed for reloading filament into extruder. Zero means same speed with "
|
"Speed for reloading filament into extruder. Zero means same speed with "
|
||||||
|
|
@ -9699,10 +9705,10 @@ msgstr ""
|
||||||
"은 80%입니다"
|
"은 80%입니다"
|
||||||
|
|
||||||
msgid "Skirt distance"
|
msgid "Skirt distance"
|
||||||
msgstr "스커트-챙(브림)/개체 거리"
|
msgstr "스커트 거리"
|
||||||
|
|
||||||
msgid "Distance from skirt to brim or object"
|
msgid "Distance from skirt to brim or object"
|
||||||
msgstr "스커트와 챙(브림) 또는 개체와의 거리"
|
msgstr "스커트와 브림 또는 개체와의 거리"
|
||||||
|
|
||||||
msgid "Skirt height"
|
msgid "Skirt height"
|
||||||
msgstr "스커트 높이"
|
msgstr "스커트 높이"
|
||||||
|
|
@ -9757,7 +9763,7 @@ msgid ""
|
||||||
"generated model has no seam"
|
"generated model has no seam"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"나선화는 외부 윤곽선의 z 이동을 부드럽게 합니다. 그리고 개체를 꽉찬 하단 레이"
|
"나선화는 외부 윤곽선의 z 이동을 부드럽게 합니다. 그리고 개체를 꽉찬 하단 레이"
|
||||||
"어(Solid bottom layers)가 있는 단일 벽으로 출력합니다. 최종 생성된 출력물에"
|
"어가 있는 단일 벽으로 출력합니다. 최종 생성된 출력물에"
|
||||||
"는 솔기가 없습니다"
|
"는 솔기가 없습니다"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -9901,7 +9907,7 @@ msgid ""
|
||||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||||
"generated"
|
"generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"일반(자동) 및 나무(자동)는 지지대를 자동으로 생성합니다. 일반(수동) 또는 나무"
|
"일반(자동) 및 나무(자동)은 지지대를 자동으로 생성합니다. 일반(수동) 또는 나무"
|
||||||
"(수동) 선택시에는 강제된 지지대만 생성됩니다"
|
"(수동) 선택시에는 강제된 지지대만 생성됩니다"
|
||||||
|
|
||||||
msgid "normal(auto)"
|
msgid "normal(auto)"
|
||||||
|
|
@ -10169,18 +10175,18 @@ msgstr ""
|
||||||
"으로 계산됩니다 "
|
"으로 계산됩니다 "
|
||||||
|
|
||||||
msgid "Auto brim width"
|
msgid "Auto brim width"
|
||||||
msgstr "나무 지지대 자동 챙(브림) 너비"
|
msgstr "나무 지지대 자동 브림 너비"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this option means the width of the brim for tree support will be "
|
"Enabling this option means the width of the brim for tree support will be "
|
||||||
"automatically calculated"
|
"automatically calculated"
|
||||||
msgstr "옵션을 활성화하면 나무 지지대의 챙(브림) 너비가 자동으로 계산됩니다"
|
msgstr "옵션을 활성화하면 나무 지지대의 브림 너비가 자동으로 계산됩니다"
|
||||||
|
|
||||||
msgid "Tree support brim width"
|
msgid "Tree support brim width"
|
||||||
msgstr "나무 지지대 챙(브림) 너비"
|
msgstr "나무 지지대 브림 너비"
|
||||||
|
|
||||||
msgid "Distance from tree branch to the outermost brim line"
|
msgid "Distance from tree branch to the outermost brim line"
|
||||||
msgstr "나무 지지대 가지에서 가장 바깥쪽 챙(브림)까지의 거리"
|
msgstr "나무 지지대 가지에서 가장 바깥쪽 브림까지의 거리"
|
||||||
|
|
||||||
msgid "Tip Diameter"
|
msgid "Tip Diameter"
|
||||||
msgstr "끝 직경"
|
msgstr "끝 직경"
|
||||||
|
|
@ -10288,7 +10294,7 @@ msgstr ""
|
||||||
"니다"
|
"니다"
|
||||||
|
|
||||||
msgid "This gcode is inserted when the extrusion role is changed"
|
msgid "This gcode is inserted when the extrusion role is changed"
|
||||||
msgstr ""
|
msgstr "이 G코드는 압출 역할이 변경될 때 삽입됩니다."
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||||
|
|
@ -10521,7 +10527,7 @@ msgid "Rotate the polyhole every layer."
|
||||||
msgstr "레이어마다 폴리홀을 회전시킵니다."
|
msgstr "레이어마다 폴리홀을 회전시킵니다."
|
||||||
|
|
||||||
msgid "G-code thumbnails"
|
msgid "G-code thumbnails"
|
||||||
msgstr "G코드 미리보기(썸네일)"
|
msgstr "G코드 미리보기"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the "
|
"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the "
|
||||||
|
|
@ -10772,13 +10778,13 @@ msgid "Export Settings"
|
||||||
msgstr "설정 내보내기"
|
msgstr "설정 내보내기"
|
||||||
|
|
||||||
msgid "Export settings to a file."
|
msgid "Export settings to a file."
|
||||||
msgstr "설정을 파일로 내보냅니다."
|
msgstr "설정을 파일로 내보내기."
|
||||||
|
|
||||||
msgid "Send progress to pipe"
|
msgid "Send progress to pipe"
|
||||||
msgstr "Send progress to pipe"
|
msgstr "진행 상황을 파이프로 보내기"
|
||||||
|
|
||||||
msgid "Send progress to pipe."
|
msgid "Send progress to pipe."
|
||||||
msgstr "Send progress to pipe."
|
msgstr "진행 상황을 파이프로 보내기."
|
||||||
|
|
||||||
msgid "Arrange Options"
|
msgid "Arrange Options"
|
||||||
msgstr "정렬 옵션"
|
msgstr "정렬 옵션"
|
||||||
|
|
@ -10793,7 +10799,7 @@ msgid "Repetions count of the whole model"
|
||||||
msgstr "전체 모델의 반복 횟수"
|
msgstr "전체 모델의 반복 횟수"
|
||||||
|
|
||||||
msgid "Ensure on bed"
|
msgid "Ensure on bed"
|
||||||
msgstr "Ensure on bed"
|
msgstr "베드에서 확인"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lift the object above the bed when it is partially below. Disabled by default"
|
"Lift the object above the bed when it is partially below. Disabled by default"
|
||||||
|
|
@ -11639,10 +11645,10 @@ msgid "PA Calibration"
|
||||||
msgstr "PA 교정"
|
msgstr "PA 교정"
|
||||||
|
|
||||||
msgid "DDE"
|
msgid "DDE"
|
||||||
msgstr "다이렉트 드라이브(DDE)"
|
msgstr "다이렉트"
|
||||||
|
|
||||||
msgid "Bowden"
|
msgid "Bowden"
|
||||||
msgstr "보우덴(Bowden)"
|
msgstr "보우덴"
|
||||||
|
|
||||||
msgid "Extruder type"
|
msgid "Extruder type"
|
||||||
msgstr "압출기 타입"
|
msgstr "압출기 타입"
|
||||||
|
|
@ -12058,8 +12064,8 @@ msgid ""
|
||||||
"Did you know that when printing models have a small contact interface with "
|
"Did you know that when printing models have a small contact interface with "
|
||||||
"the printing surface, it's recommended to use a brim?"
|
"the printing surface, it's recommended to use a brim?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"더 나은 안착을 위한 챙(브림)\n"
|
"더 나은 안착을 위한 브림\n"
|
||||||
"출력 모델이 베드 표면과의 접촉면이 작을 때 챙(브림)를 사용하는 것이 좋다는 사"
|
"출력 모델이 베드 표면과의 접촉면이 작을 때 브림를 사용하는 것이 좋다는 사"
|
||||||
"실을 알고 있습니까?"
|
"실을 알고 있습니까?"
|
||||||
|
|
||||||
#: resources/data/hints.ini: [hint:Set parameters for multiple objects]
|
#: resources/data/hints.ini: [hint:Set parameters for multiple objects]
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
37
resources/images/copy_menu.svg
Normal file
37
resources/images/copy_menu.svg
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
|
||||||
|
<g id="copy">
|
||||||
|
<g>
|
||||||
|
<path fill="#009688" d="M115.76,51.2l-8.06-8.06c-2.47-2.47-6.97-4.34-10.47-4.34h-50.8c-4.2,0-7.62,3.42-7.62,7.62v66.04
|
||||||
|
c0,4.2,3.42,7.62,7.62,7.62h66.04c4.2,0,7.62-3.42,7.62-7.62v-50.8C120.09,58.17,118.23,53.67,115.76,51.2z M111.42,54.04h-6.57
|
||||||
|
v-6.57L111.42,54.04z M115.01,112.47c0,1.4-1.14,2.54-2.54,2.54H46.43c-1.4,0-2.54-1.14-2.54-2.54V46.42
|
||||||
|
c0-1.4,1.14-2.54,2.54-2.54h50.8c0.74,0,1.63,0.18,2.54,0.46v12.24c0,1.4,1.14,2.54,2.54,2.54h12.24c0.28,0.91,0.46,1.8,0.46,2.54
|
||||||
|
V112.47z"/>
|
||||||
|
<path fill="#009688" d="M53.97,59.13h35.72c1.4,0,2.54-1.14,2.54-2.54s-1.14-2.54-2.54-2.54H53.97c-1.4,0-2.54,1.14-2.54,2.54
|
||||||
|
S52.56,59.13,53.97,59.13z"/>
|
||||||
|
<path fill="#009688" d="M104.93,69.29H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S106.33,69.29,104.93,69.29z"/>
|
||||||
|
<path fill="#009688" d="M104.93,84.53H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S106.33,84.53,104.93,84.53z"/>
|
||||||
|
<path fill="#009688" d="M104.93,99.77H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S106.33,99.77,104.93,99.77z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path fill="#262E30" d="M85.27,20.71l-8.06-8.06c-2.47-2.47-6.97-4.34-10.47-4.34h-50.8c-4.2,0-7.62,3.42-7.62,7.62v66.04
|
||||||
|
c0,4.2,3.42,7.62,7.62,7.62h17.78c1.4,0,2.54-1.14,2.54-2.54s-1.14-2.54-2.54-2.54H15.94c-1.4,0-2.54-1.14-2.54-2.54V15.94
|
||||||
|
c0-1.4,1.14-2.54,2.54-2.54h50.8c0.74,0,1.63,0.18,2.54,0.46V26.1c0,1.4,1.14,2.54,2.54,2.54h12.45c0.16,0.49,0.25,0.93,0.25,1.27
|
||||||
|
v3.81c0,1.4,1.14,2.54,2.54,2.54c1.4,0,2.54-1.14,2.54-2.54v-3.81C89.61,27.14,87.75,23.19,85.27,20.71z M74.37,16.99l6.57,6.57
|
||||||
|
h-6.57V16.99z"/>
|
||||||
|
<path fill="#262E30" d="M59.21,23.56H23.48c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h35.72c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S60.61,23.56,59.21,23.56z"/>
|
||||||
|
<path fill="#262E30" d="M28.73,38.8h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S30.13,38.8,28.73,38.8z"/>
|
||||||
|
<path fill="#262E30" d="M28.73,54.04h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S30.13,54.04,28.73,54.04z"/>
|
||||||
|
<path fill="#262E30" d="M28.73,69.29h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S30.13,69.29,28.73,69.29z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
37
resources/images/copy_menu_dark.svg
Normal file
37
resources/images/copy_menu_dark.svg
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
|
||||||
|
<g id="copy">
|
||||||
|
<g>
|
||||||
|
<path fill="#009688" d="M115.76,51.2l-8.06-8.06c-2.47-2.47-6.97-4.34-10.47-4.34h-50.8c-4.2,0-7.62,3.42-7.62,7.62v66.04
|
||||||
|
c0,4.2,3.42,7.62,7.62,7.62h66.04c4.2,0,7.62-3.42,7.62-7.62v-50.8C120.09,58.17,118.23,53.67,115.76,51.2z M111.42,54.04h-6.57
|
||||||
|
v-6.57L111.42,54.04z M115.01,112.47c0,1.4-1.14,2.54-2.54,2.54H46.43c-1.4,0-2.54-1.14-2.54-2.54V46.42
|
||||||
|
c0-1.4,1.14-2.54,2.54-2.54h50.8c0.74,0,1.63,0.18,2.54,0.46v12.24c0,1.4,1.14,2.54,2.54,2.54h12.24c0.28,0.91,0.46,1.8,0.46,2.54
|
||||||
|
V112.47z"/>
|
||||||
|
<path fill="#009688" d="M53.97,59.13h35.72c1.4,0,2.54-1.14,2.54-2.54s-1.14-2.54-2.54-2.54H53.97c-1.4,0-2.54,1.14-2.54,2.54
|
||||||
|
S52.56,59.13,53.97,59.13z"/>
|
||||||
|
<path fill="#009688" d="M104.93,69.29H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S106.33,69.29,104.93,69.29z"/>
|
||||||
|
<path fill="#009688" d="M104.93,84.53H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S106.33,84.53,104.93,84.53z"/>
|
||||||
|
<path fill="#009688" d="M104.93,99.77H53.97c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h50.96c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S106.33,99.77,104.93,99.77z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path fill="#B6B6B6" d="M85.27,20.71l-8.06-8.06c-2.47-2.47-6.97-4.34-10.47-4.34h-50.8c-4.2,0-7.62,3.42-7.62,7.62v66.04
|
||||||
|
c0,4.2,3.42,7.62,7.62,7.62h17.78c1.4,0,2.54-1.14,2.54-2.54s-1.14-2.54-2.54-2.54H15.94c-1.4,0-2.54-1.14-2.54-2.54V15.94
|
||||||
|
c0-1.4,1.14-2.54,2.54-2.54h50.8c0.74,0,1.63,0.18,2.54,0.46V26.1c0,1.4,1.14,2.54,2.54,2.54h12.45c0.16,0.49,0.25,0.93,0.25,1.27
|
||||||
|
v3.81c0,1.4,1.14,2.54,2.54,2.54c1.4,0,2.54-1.14,2.54-2.54v-3.81C89.61,27.14,87.75,23.19,85.27,20.71z M74.37,16.99l6.57,6.57
|
||||||
|
h-6.57V16.99z"/>
|
||||||
|
<path fill="#B6B6B6" d="M59.21,23.56H23.48c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h35.72c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S60.61,23.56,59.21,23.56z"/>
|
||||||
|
<path fill="#B6B6B6" d="M28.73,38.8h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S30.13,38.8,28.73,38.8z"/>
|
||||||
|
<path fill="#B6B6B6" d="M28.73,54.04h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S30.13,54.04,28.73,54.04z"/>
|
||||||
|
<path fill="#B6B6B6" d="M28.73,69.29h-5.24c-1.4,0-2.54,1.14-2.54,2.54s1.14,2.54,2.54,2.54h5.24c1.4,0,2.54-1.14,2.54-2.54
|
||||||
|
S30.13,69.29,28.73,69.29z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
93
resources/images/toolbar_measure.svg
Normal file
93
resources/images/toolbar_measure.svg
Normal file
|
|
@ -0,0 +1,93 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
version="1.0"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
viewBox="0 0 128 128"
|
||||||
|
enable-background="new 0 0 128 128"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="measure2.svg"
|
||||||
|
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||||
|
id="defs976">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</defs><sodipodi:namedview
|
||||||
|
id="namedview974"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:pageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="6.34375"
|
||||||
|
inkscape:cx="63.921182"
|
||||||
|
inkscape:cy="64.078818"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="3191"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g1872"><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 26.966044,54.457929 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 36.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-1"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 46.966202,60.202938 0.07558,-14.999888 c 0.0063,-1.244993 0.681318,-2.242399 1.511294,-2.232988 0.829976,0.0087 1.494893,1.021998 1.48862,2.266999 l -0.07558,14.999887 c -0.0063,1.244995 -0.681318,2.242401 -1.511294,2.232988 -0.829976,-0.0087 -1.494893,-1.021997 -1.48862,-2.266998 z"
|
||||||
|
id="path958-8-9"
|
||||||
|
style="fill:#009688;fill-opacity:1;stroke-width:1.22476;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 56.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-9-3"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 66.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-9-3-0"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 76.966202,60.202932 0.07558,-14.999881 c 0.0063,-1.244994 0.681318,-2.2424 1.511294,-2.23299 0.829976,0.0085 1.494893,1.021998 1.48862,2.266999 l -0.07558,14.999882 c -0.0063,1.244995 -0.681318,2.2424 -1.511294,2.232987 -0.829976,-0.0085 -1.494893,-1.021996 -1.48862,-2.266997 z"
|
||||||
|
id="path958-8-9-3-1"
|
||||||
|
style="fill:#009688;fill-opacity:1;stroke-width:1.22474;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 86.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-9-3-1-4"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 96.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494892,0.681318 1.488622,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-9-3-1-4-2"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /></g><g
|
||||||
|
id="g964"
|
||||||
|
transform="translate(0,34.9)">
|
||||||
|
<path
|
||||||
|
fill="#262E30"
|
||||||
|
d="M 108.79,51.6 H 19.21 c -1.93,0 -3.5,-1.57 -3.5,-3.5 V 10.12 c 0,-1.93 1.57,-3.5 3.5,-3.5 h 89.57 c 1.93,0 3.5,1.57 3.5,3.5 V 48.1 c 0.01,1.93 -1.57,3.5 -3.49,3.5 z M 19.21,9.62 c -0.27,0 -0.5,0.23 -0.5,0.5 V 48.1 c 0,0.27 0.23,0.5 0.5,0.5 h 89.57 c 0.27,0 0.5,-0.23 0.5,-0.5 V 10.12 c 0,-0.27 -0.23,-0.5 -0.5,-0.5 z"
|
||||||
|
id="path962" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.1 KiB |
93
resources/images/toolbar_measure_dark.svg
Normal file
93
resources/images/toolbar_measure_dark.svg
Normal file
|
|
@ -0,0 +1,93 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
version="1.0"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
viewBox="0 0 128 128"
|
||||||
|
enable-background="new 0 0 128 128"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="measure2.svg"
|
||||||
|
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||||
|
id="defs976">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</defs><sodipodi:namedview
|
||||||
|
id="namedview974"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:pageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="6.34375"
|
||||||
|
inkscape:cx="63.921182"
|
||||||
|
inkscape:cy="64.078818"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="3191"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g1872"><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 26.966044,54.457929 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 36.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-1"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 46.966202,60.202938 0.07558,-14.999888 c 0.0063,-1.244993 0.681318,-2.242399 1.511294,-2.232988 0.829976,0.0087 1.494893,1.021998 1.48862,2.266999 l -0.07558,14.999887 c -0.0063,1.244995 -0.681318,2.242401 -1.511294,2.232988 -0.829976,-0.0087 -1.494893,-1.021997 -1.48862,-2.266998 z"
|
||||||
|
id="path958-8-9"
|
||||||
|
style="fill:#009688;fill-opacity:1;stroke-width:1.22476;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 56.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-9-3"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 66.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-9-3-0"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 76.966202,60.202932 0.07558,-14.999881 c 0.0063,-1.244994 0.681318,-2.2424 1.511294,-2.23299 0.829976,0.0085 1.494893,1.021998 1.48862,2.266999 l -0.07558,14.999882 c -0.0063,1.244995 -0.681318,2.2424 -1.511294,2.232987 -0.829976,-0.0085 -1.494893,-1.021996 -1.48862,-2.266997 z"
|
||||||
|
id="path958-8-9-3-1"
|
||||||
|
style="fill:#009688;fill-opacity:1;stroke-width:1.22474;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 86.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494893,0.681318 1.48862,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-9-3-1-4"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /><path
|
||||||
|
fill="#009688"
|
||||||
|
d="m 96.966044,54.458378 0.07558,-9.999714 c 0.0063,-0.829976 0.681318,-1.494893 1.511294,-1.48862 0.829976,0.0063 1.494892,0.681318 1.488622,1.511294 l -0.07558,9.999714 c -0.0063,0.829977 -0.681318,1.494894 -1.511294,1.48862 -0.829976,-0.0063 -1.494893,-0.681317 -1.48862,-1.511294 z"
|
||||||
|
id="path958-8-9-3-1-4-2"
|
||||||
|
style="fill:#009688;fill-opacity:1;paint-order:stroke fill markers"
|
||||||
|
sodipodi:nodetypes="sccsccs" /></g><g
|
||||||
|
id="g964"
|
||||||
|
transform="translate(0,34.9)">
|
||||||
|
<path
|
||||||
|
fill="#B6B6B6"
|
||||||
|
d="M 108.79,51.6 H 19.21 c -1.93,0 -3.5,-1.57 -3.5,-3.5 V 10.12 c 0,-1.93 1.57,-3.5 3.5,-3.5 h 89.57 c 1.93,0 3.5,1.57 3.5,3.5 V 48.1 c 0.01,1.93 -1.57,3.5 -3.49,3.5 z M 19.21,9.62 c -0.27,0 -0.5,0.23 -0.5,0.5 V 48.1 c 0,0.27 0.23,0.5 0.5,0.5 h 89.57 c 0.27,0 0.5,-0.23 0.5,-0.5 V 10.12 c 0,-0.27 -0.23,-0.5 -0.5,-0.5 z"
|
||||||
|
id="path962" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 5.1 KiB |
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Anker",
|
"name": "Anker",
|
||||||
"version": "01.06.04.00",
|
"version": "01.08.00.00",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Anker configurations",
|
"description": "Anker configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Anycubic",
|
"name": "Anycubic",
|
||||||
"version": "01.06.00.00",
|
"version": "01.08.00.00",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Anycubic configurations",
|
"description": "Anycubic configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@
|
||||||
"ironing_speed": "30",
|
"ironing_speed": "30",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Artillery",
|
"name": "Artillery",
|
||||||
"version": "01.06.04.00",
|
"version": "01.08.00.00",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Artillery configurations",
|
"description": "Artillery configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@
|
||||||
"ironing_speed": "30",
|
"ironing_speed": "30",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "Bambulab",
|
"name": "Bambulab",
|
||||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||||
"version": "01.07.00.29",
|
"version": "01.07.00.30",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "the initial version of BBL configurations",
|
"description": "the initial version of BBL configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
"from": "system",
|
"from": "system",
|
||||||
"instantiation": "false",
|
"instantiation": "false",
|
||||||
"activate_air_filtration": [
|
"activate_air_filtration": [
|
||||||
"1"
|
"0"
|
||||||
],
|
],
|
||||||
"cool_plate_temp": [
|
"cool_plate_temp": [
|
||||||
"0"
|
"0"
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
"from": "system",
|
"from": "system",
|
||||||
"instantiation": "false",
|
"instantiation": "false",
|
||||||
"activate_air_filtration": [
|
"activate_air_filtration": [
|
||||||
"1"
|
"0"
|
||||||
],
|
],
|
||||||
"cool_plate_temp": [
|
"cool_plate_temp": [
|
||||||
"0"
|
"0"
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "BIQU",
|
"name": "BIQU",
|
||||||
"version": "01.06.00.00",
|
"version": "01.08.00.00",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "BIQU configurations",
|
"description": "BIQU configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Comgrow",
|
"name": "Comgrow",
|
||||||
"version": "01.07.00.00",
|
"version": "01.08.00.00",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Comgrow configurations",
|
"description": "Comgrow configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Creality",
|
"name": "Creality",
|
||||||
"version": "01.07.00.00",
|
"version": "01.08.00.00",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Creality configurations",
|
"description": "Creality configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|
|
||||||
|
|
@ -8,5 +8,5 @@
|
||||||
"bed_model": "creality_k1max_buildplate_model.stl",
|
"bed_model": "creality_k1max_buildplate_model.stl",
|
||||||
"bed_texture": "creality_k1max_buildplate_texture.png",
|
"bed_texture": "creality_k1max_buildplate_texture.png",
|
||||||
"hotend_model": "",
|
"hotend_model": "",
|
||||||
"default_materials": "Creality Generic PLA @0.4 nozzle;Creality HF Generic PLA @0.4 nozzle;Creality HF Generic Speed PLA @0.4 nozzle;Creality Generic PETG @0.4 nozzle;Creality Generic TPU @0.4 nozzle;Creality Generic ABS @0.4 nozzle;Creality Generic PLA @0.6 nozzle;Creality HF Generic PLA @0.6 nozzle;Creality HF Generic Speed PLA @0.6 nozzle;Creality Generic PETG @0.6 nozzle;Creality Generic TPU @0.6 nozzle;Creality Generic ABS @0.6 nozzle;Creality Generic PLA @0.8 nozzle;Creality HF Generic PLA @0.8 nozzle;Creality HF Generic Speed PLA @0.8 nozzle;Creality Generic PETG @0.8 nozzle;Creality Generic TPU @0.8 nozzle;Creality Generic ABS @0.8 nozzle"
|
"default_materials": "Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PETG;Creality Generic TPU;Creality Generic ABS"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,5 +8,5 @@
|
||||||
"bed_model": "creality_k1_buildplate_model.stl",
|
"bed_model": "creality_k1_buildplate_model.stl",
|
||||||
"bed_texture": "creality_k1_buildplate_texture.png",
|
"bed_texture": "creality_k1_buildplate_texture.png",
|
||||||
"hotend_model": "",
|
"hotend_model": "",
|
||||||
"default_materials": "Creality Generic PLA @0.4 nozzle;Creality HF Generic PLA @0.4 nozzle;Creality HF Generic Speed PLA @0.4 nozzle;Creality Generic PETG @0.4 nozzle;Creality Generic TPU @0.4 nozzle;Creality Generic ABS @0.4 nozzle;Creality Generic PLA @0.6 nozzle;Creality HF Generic PLA @0.6 nozzle;Creality HF Generic Speed PLA @0.6 nozzle;Creality Generic PETG @0.6 nozzle;Creality Generic TPU @0.6 nozzle;Creality Generic ABS @0.6 nozzle;Creality Generic PLA @0.8 nozzle;Creality HF Generic PLA @0.8 nozzle;Creality HF Generic Speed PLA @0.8 nozzle;Creality Generic PETG @0.8 nozzle;Creality Generic TPU @0.8 nozzle;Creality Generic ABS @0.8 nozzle"
|
"default_materials": "Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PETG;Creality Generic TPU;Creality Generic ABS"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.12",
|
"layer_height": "0.12",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.12",
|
"layer_height": "0.12",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.12",
|
"layer_height": "0.12",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.15",
|
"layer_height": "0.15",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.15",
|
"layer_height": "0.15",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.15",
|
"layer_height": "0.15",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_speed": "15",
|
"ironing_speed": "15",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "20",
|
"overhang_2_4_speed": "20",
|
||||||
|
|
|
||||||
|
|
@ -49,9 +49,9 @@
|
||||||
"ironing_spacing": "0.15",
|
"ironing_spacing": "0.15",
|
||||||
"ironing_speed": "100",
|
"ironing_speed": "100",
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.24",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.3",
|
"layer_height": "0.3",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"ironing_type": "no ironing",
|
"ironing_type": "no ironing",
|
||||||
"layer_height": "0.3",
|
"layer_height": "0.3",
|
||||||
"reduce_infill_retraction": "1",
|
"reduce_infill_retraction": "1",
|
||||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||||
"detect_overhang_wall": "1",
|
"detect_overhang_wall": "1",
|
||||||
"overhang_1_4_speed": "0",
|
"overhang_1_4_speed": "0",
|
||||||
"overhang_2_4_speed": "50",
|
"overhang_2_4_speed": "50",
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue