Package Details: cura-bin 5.8.1-1

Git Clone URL: https://aur.archlinux.org/cura-bin.git (read-only, click to copy)
Package Base: cura-bin
Description: State-of-the-art slicer app to prepare your 3D models for your 3D printer
Upstream URL: https://ultimaker.com/software/ultimaker-cura
Licenses: LGPL3
Conflicts: cura
Provides: cura
Submitter: prurigro
Maintainer: prurigro
Last Packager: prurigro
Votes: 48
Popularity: 1.17
First Submitted: 2022-09-02 21:14 (UTC)
Last Updated: 2024-09-01 03:04 (UTC)

Latest Comments

« First ‹ Previous 1 .. 8 9 10 11 12 13 14 15 16 Next › Last »

mstmob commented on 2022-09-10 12:51 (UTC)

Seems like all popup dialogs do not work. At least the "save to disk" dialog also does not show up.. The workaround in this issue helped me: https://github.com/Ultimaker/Cura/issues/12266 TLDR: install xdg-desktop-portal xdg-desktop-portal-gtk

sum01 commented on 2022-09-10 00:43 (UTC)

Not sure why, but the "open file" dialog doesn't work with this package. cura-appimage-bin did though. They both install and run fine though.

Toric commented on 2022-09-09 02:46 (UTC) (edited on 2022-09-09 03:42 (UTC) by Toric)

Still does not work with x11. Also, should it be changed to the modern appimage? might let you get rid of the LD_PRELOAD.

xiota commented on 2022-09-05 16:14 (UTC)

Why not put the AppImage in /opt/ultimaker-cura/ and symlink it? That way it's more clear that it's an AppImage.

kiankasad commented on 2022-08-23 06:31 (UTC)

The last line in cura5.sh should replace $1 with "$@" to preserve all command-line arguments:

#!/bin/bash
export QT_QPA_PLATAFORM=xdgdesktopportal
export QT_QPA_PLATFORMTHEME=xdgdesktopportal
cd /opt/cura5/
QT_QPA_PLATFORMTHEME=xdgdesktopportal QT_QPA_PLATAFORM=xdgdesktopportal ./Ultimaker-Cura "$@"

FabioLolix commented on 2022-08-16 18:25 (UTC)

Hello,

  • does it really need a custom DL agent?
  • conflicts with cura-appimage-git is not needed
  • renaming source with to the same name is not needed

janek commented on 2022-08-11 12:15 (UTC) (edited on 2022-08-11 12:16 (UTC) by janek)

Just in case someone has the same problem:

Cura crashed for me with Trace/breakpoint trap (core dumped) (I'm on wayland/sway). I was able to fix it by switching to the "linux-modern" appimage, which is provided by Cura since 5.1:

 source=(
-    "${_pkgname}-${pkgver}.AppImage::https://github.com/Ultimaker/Cura/releases/download/${pkgver}/${_pkgname}-${pkgver}-linux.AppImage"
+    "${_pkgname}-${pkgver}.AppImage::https://github.com/Ultimaker/Cura/releases/download/${pkgver}/${_pkgname}-${pkgver}-linux-modern.AppImage"

And then updpkgsums / change sha256 to 3afc02e20938785f4ee0c925370659f5449c4c67e36ab7f4c617af8361476f32

gmy commented on 2022-08-03 21:00 (UTC)

Not sure if setting QT_QPA_PLATFORM=xcb should be part of the package since it's environment-specific. Anyway, incorporated it for now. Please, say so if it breaks your setup.

lynxed commented on 2022-07-31 01:46 (UTC)

Confirmation that N0id workaround for wayland/sway works by setting QT_QPA_PLATFORMN=xcb in cura.sh works as of 5.0.0-2

N0id commented on 2022-07-16 20:02 (UTC)

Just in case someone has the same problem running wayland/sway. I also had to set QT_QPA_PLATFORM to xcb. Fixed it via patching cura.sh:

FIXUPS="LD_PRELOAD=/usr/lib/libstdc++.so.6 QT_QPA_PLATFORM=xcb"