Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-19Add Path to the importsJelle Spijker
2022-07-18Make sure all dynamic libs are copied to the distj.spijker@ultimaker.com
Solve it dynamically in the Ultimaker-Cura.spec, Such that we can copy files manually (OpenSSL shared) to the bin/Script folder after the cura install step. Contributes to CURA-9342
2022-07-07Fixed missing qoutesj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-07Add missing commaj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-07Add missing info.plistj.spijker@ultimaker.com
https://github.com/Ultimaker/cura-build/blob/2ce60de673a424dbc9438df7c9c50492b1fb0e6d/packaging/Info.plist.in#L5 Contributes to CURA-9365
2022-07-07ducktype the PyInstaller BUNDLEj.spijker@ultimaker.com
Should be an acceptable workaround for pyinstaller/pyinstaller#6612 The `assemble` method is probably to0 specific to contribute with a PR against PyInstaller. Contributes to CURA-9365
2022-07-01Fix icon nad bundle identifier in spec filec.lamboo
icon and bundle_identifier already contain quotes CURA-9365
2022-07-01Fix passing macos flag to jinjac.lamboo
CURA-9365
2022-07-01Use BUNDLE app for Macosj.spijker@ultimaker.com
Contributes to CURA-9365 Co-authored-by: casperlamboo <c.lamboo@ultimaker.com>
2022-07-01Fixes escaped path's on Windowsj.spijker@ultimaker.com
Why is it that the Path is converted to single \ for the icon and entry_point but not for the binaries? Contributes to CURA-9365
2022-07-01Added missing commaj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-01Remove quotes around None valuej.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-01Set strip to True for Mac and Linuxj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-01Add target architecture for Macosj.spijker@ultimaker.com
We should extend this Arm support in the future Contributes to CURA-9365
2022-07-01Add osx_bundle_identifierj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-01Only use upx on Windowsj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-01explicit cast from Path to strj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-01Allow for pyinstaller to sign the files on MacOSj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-01Add conan binaries to binariesj.spijker@ultimaker.com
Contributes to CURA-9365
2022-07-01parse tuple not stringJelle Spijker
2022-07-01Fixed Ultimaker-Cura specj.spijker@ultimaker.com
Contributes to CURA-9365
2022-06-30Add conan_binaries to pyinstallerj.spijker@ultimaker.com
Contributes to CURA-9365
2022-06-30Use correct pathsj.spijker@ultimaker.com
Contributes to CURA-9365
2022-06-16Use only pip in conan requirementsj.spijker@ultimaker.com
No longer download and mess with sources from other repo's. Created Conan packages for cura-binary-data, fdm_materials and uranium. Charon is installed with pip. I had to create a separate requirement file for that since you can't mix and match git and hashes. Contributes to CURA-9365
2022-06-13Generate the pyinstaller spec filej.spijker@ultimaker.com
This will be generated if you do a conan install with devtools It assumes that the projects `cura-binary-data`, `fdm_materials`, `uranium`, `libcharon` are installed along side the `cura` project. It will automatically install the fdm_materials when running conan source. The pyinstall dist can be created with: ``` # Windows Powershell conan install . -pr:b cura_build.jinja -pr:h cura_release.jinja --build=missing --update -o cura:devtools=True conan source . .\venv\Scripts\Activate.ps1 pyinstaller Ultimaker-Cura.spec ``` ``` # bash conan install . -pr:b cura_build.jinja -pr:h cura_release.jinja --build=missing --update -o cura:devtools=True conan source . source venv\bin\activate pyinstaller Ultimaker-Cura.spec ``` Contributes to CURA-9365