Package Details: orca-slicer 2.2.0-1

Git Clone URL: https://aur.archlinux.org/orca-slicer.git (read-only, click to copy)
Package Base: orca-slicer
Description: Orca Slicer is a fork of Bambu Studio. It was previously known as BambuStudio-SoftFever
Upstream URL: https://github.com/SoftFever/OrcaSlicer
Keywords: bambustudio orcaslicer
Licenses: AGPLv3
Conflicts: OrcaSlicer
Provides: OrcaSlicer
Submitter: xburst
Maintainer: c2h5oh
Last Packager: c2h5oh
Votes: 16
Popularity: 1.94
First Submitted: 2023-03-29 15:51 (UTC)
Last Updated: 2024-10-29 14:57 (UTC)

Latest Comments

1 2 3 4 5 6 .. 9 Next › Last »

icedryst commented on 2025-01-13 07:46 (UTC)

For NVIDIA, I had to change __EGL_VENDOR_LIBRARY_FILENAMES to mesa to load the build plate display

Exec=env __EGL_VENDOR_LIBRARY_FILENAMES=/usr/share/glvnd/egl_vendor.d/50_mesa.json WEBKIT_DISABLE_DMABUF_RENDERER=1 orca-slicer %U

FloydLacey commented on 2025-01-06 09:46 (UTC) (edited on 2025-01-06 09:49 (UTC) by FloydLacey)

Adding a custom desktop file in .local/share/applications with WEBKIT_DISABLE_DMABUF_RENDERER=1 as env resolves the webkit issue until a real fix is made upstream:

[Desktop Entry]
Name=OrcaSlicer
Exec=env WEBKIT_DISABLE_DMABUF_RENDERER=1 /opt/orca-slicer/bin/orca-slicer %F
Icon=OrcaSlicer
Type=Application
Categories=Utility;
MimeType=model/stl;application/vnd.ms-3mfdocument;application/prs.wavefront-obj;application/x-amf;

manio commented on 2025-01-02 07:23 (UTC)

@c2h5oh Can you please take a look at this issue? https://github.com/wxWidgets/wxWidgets/issues/25038

This is how orca-slicer is looking on my scaled 4k display under sway/wayland. Do you have any clue why is this?

Is it because some old linked wxWidgets?

gyscos commented on 2024-11-15 16:24 (UTC) (edited on 2024-11-15 16:25 (UTC) by gyscos)

On my computer this package built fine, but when starting it, the "setup wizard" popup was blank, preventing further interaction.

Seems like it was an issue with webkit: https://github.com/SoftFever/OrcaSlicer/issues/2203

I just had to disable DMABUF:

WEBKIT_DISABLE_DMABUF_RENDERER=1 orca-slicer-bin

With this, everything is working fine. Could it be added to the orca-slicer bash wrapper script? Thanks!

meijin commented on 2024-11-07 07:35 (UTC)

After building this package, OrcaSlicer is running, but I cannot type anything in any form text box (for example, setting a printer IP, etc.). Do you have any ideas?

abody commented on 2024-10-29 11:37 (UTC)

diff --git a/PKGBUILD b/PKGBUILD
index 56b6c1c..2e294db 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,8 @@
 # Maintainer: shizhiex <shizhiex@gmail.com>

 pkgname="orca-slicer"
-pkgver=2.2.0rc
-_tag='2.2.0-rc'
+pkgver=2.2.0
+_tag='2.2.0'
 pkgrel=2
 pkgdesc="Orca Slicer is a fork of Bambu Studio. It was previously known as BambuStudio-SoftFever"
 arch=('x86_64')
@@ -18,8 +18,8 @@ source=(
   'CMakeLists.txt.patch'
   'orca-slicer.sh'
   '0002-clipper.patch'
-sha256sums=('58a47a04f37d9e93199c820d25adfbe9115ac6d4fecc5031b996ade28bdc5272'
+sha256sums=('90d78d8bd60fb98a4e63708b70e53c3095fb61c16381d36d0063a6d7943a4ec7'
             'bb2662d0a4c58c43726ec98ef4acf201fcf98719c9bbfd207e2d6cdf695a2093'
             '01171a77d533584026f113092a6586e28c9d87e10117c0f81cb4357d11a29fb1'
             '8c958ecc5522fd00b9e4161e20de438265fd7f31abdbcc63d7e5d90596ff7a19'

c2h5oh commented on 2024-10-23 13:17 (UTC)

orca-slicer.sh ... FAILED error fixed - I forgot to update hash after making the change requested by l8086

in0z4z commented on 2024-10-23 06:58 (UTC)

Note for paru users who build with a chroot: you'll get the error from the previous comment, so you'll have to build the package manually with makepkg:

git clone https://aur.archlinux.org/orca-slicer.git
cd orca-slicer
makepkg
# Might complain about missing packages, install them with paru -S, for example:
paru -S webkit2gtk ttf-harmonyos-sans extra-cmake-modules
makepkg
paru -U ./orca-slicer-2.2.0rc-2-x86_64.pkg.tar.zst # Or whatever is the version of the package when you read/followed this comment
# The following will fix the dependencies you manually installed previously, so they can be later automatically removed if you decide to remove orca-slicer:
sudo pacman -D --asdeps webkit2gtk ttf-harmonyos-sans extra-cmake-modules