-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OrcaSlicer App Suggestion #2688
Comments
Hello there 👋 Please respond as soon as possible if a Pi-Apps maintainer requests more information from you. Stale issues will be closed after a lengthy period of time with no response. |
You clicked that checkbox. Please provide proof. Last we knew, OrcaSlicer did not have an ARM build compatible with Raspberry Pi. If you do not respond, we will have to close this issue. Also, minor nitpick. You confirmed that OrcaSlicer has not been discussed before. Actually an issue already has been made for it here: #2660 |
I swear some these people can't even dare to compile a build for ARM64 build of their chosen app or even check if there is a prebuilt available (that is if the app they are submitting is open source, if its proprietary then good luck getting the app work on box64) but i did what people are meant to follow and that is compile a build of OrcaSlicer for ARM64 (it took around 2-3 hours on my Pi 5 with the More RAM app installed from Pi-Apps!!) and here is a proper app submission for Pi-Apps: |
A zipfile was found in the body of an issue comment. Click to show contents preview
#!/bin/bash
status "Removing Orca Slicer binaries"
sudo rm -rf /opt/OrcaSlicer || error "Failed to remove Orca Slicer binaries from /opt!"
sudo rm /usr/bin/orca-slicer || error "Failed to remove Orca Slicer symlink from /usr/bin!"
sudo rm /usr/share/pixmaps/OrcaSlicer.png || error "Failed to remove Orca Slicer pixmap!"
status "Removing desktop entry for Orca Slicer..."
sudo rm /usr/share/applications/OrcaSlicer.desktop || error "Failed to remove .desktop entry!"
#!/bin/bash
version="2.3.0-dev"
sudo rm -rf /tmp/orcaslicer /opt/OrcaSlicer
status "Downloading Orca Slicer binaries..."
wget -O /tmp/OrcaSlicer-$version-arm64.zip https://github.com/matu6968/pi-apps-files/releases/download/large-files/OrcaSlicer-$version-arm64.zip || error 'Failed to download Orca Slicer binaries!'
status "Extracting Orca Slicer binaries..."
unzip /tmp/OrcaSlicer-$version-arm64.zip -d /tmp/orcaslicer || error "Failed to unzip Orca Slicer binaries!"
cd /tmp/orcaslicer
status "Copying Orca Slicer binaries..."
sudo mkdir /opt/OrcaSlicer
sudo cp -r bin /opt/OrcaSlicer/ || error "Failed to copy OrcaSlicer binaries to /opt!"
sudo cp -r resources /opt/OrcaSlicer/ || error "Failed to copy OrcaSlicer resources folder to /opt!"
sudo ln -s /opt/OrcaSlicer/bin/orca-slicer /usr/bin || error "Failed to symlink OrcaSlicer binary to /usr/bin!"
sudo cp usr/share/icons/hicolor/192x192/apps/OrcaSlicer.png /usr/share/pixmaps || error "Failed to copy Orca Slicer icon!"
status "Making desktop entry for Orca Slicer..."
sudo cp usr/share/applications/OrcaSlicer.desktop /usr/share/applications/ || error "Failed to copy .desktop entry!"
|
What is the name of the app?
OrcaSlicer
Where is the app hosted?
Github.
About the app
Slicing software based off Bambu Studio and PrusaSlicer, very popualr since people prefer it over prusaslicer or cura.
Upload file or Add PR Link
https://github.com/SoftFever/OrcaSlicer
Confirmations
The text was updated successfully, but these errors were encountered: