1.5.0
This commit is contained in:
parent
ea2430265b
commit
ff81b988a3
5 changed files with 30 additions and 13 deletions
5
.github/workflows/build_linux.yml
vendored
5
.github/workflows/build_linux.yml
vendored
|
@ -43,7 +43,10 @@ jobs:
|
||||||
|
|
||||||
- name: Build Studio
|
- name: Build Studio
|
||||||
shell: bash
|
shell: bash
|
||||||
run: ./BuildLinux.sh -isr
|
run: |
|
||||||
|
./BuildLinux.sh -isr
|
||||||
|
chmod +x ./build/OrcaSlicer_ubu64.AppImage
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_Linux
|
name: OrcaSlicer_Linux
|
||||||
|
|
2
.github/workflows/build_mac_x64.yml
vendored
2
.github/workflows/build_mac_x64.yml
vendored
|
@ -90,4 +90,4 @@ jobs:
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: OrcaSlicer_Mac_Intel
|
name: OrcaSlicer_Mac_Intel
|
||||||
path: ${{ github.workspace }}/build_arm64/OrcaSlicer/OrcaSlicer*.zip
|
path: ${{ github.workspace }}/build_x86_64/OrcaSlicer/OrcaSlicer*.zip
|
34
README.md
34
README.md
|
@ -4,7 +4,7 @@
|
||||||
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_mac_arm64.yml)
|
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_mac_arm64.yml)
|
||||||
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_mac_x64.yml)
|
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_mac_x64.yml)
|
||||||
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_linux.yml)
|
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_linux.yml)
|
||||||
Orca Slicer is a fork of Bambu Studio.
|
Orca Slicer is a fork of Bambu Studio. It was previously known as BambuStudio-SoftFever.
|
||||||
Bambu Studio is based on [PrusaSlicer](https://github.com/prusa3d/PrusaSlicer) by Prusa Research, which is from [Slic3r](https://github.com/Slic3r/Slic3r) by Alessandro Ranellucci and the RepRap community.
|
Bambu Studio is based on [PrusaSlicer](https://github.com/prusa3d/PrusaSlicer) by Prusa Research, which is from [Slic3r](https://github.com/Slic3r/Slic3r) by Alessandro Ranellucci and the RepRap community.
|
||||||
Orca Slicer incorporates a lot of features from SuperSlicer by @supermerill
|
Orca Slicer incorporates a lot of features from SuperSlicer by @supermerill
|
||||||
|
|
||||||
|
@ -22,19 +22,30 @@ Prebuilt binaries are available through the [github releases page](https://githu
|
||||||
|
|
||||||
# How to install
|
# How to install
|
||||||
**Windows**:
|
**Windows**:
|
||||||
> Unzip the binaries to any folder you prefer, then execute orca-slicer.exe to start the application.
|
1. Unzip the binaries to any folder you prefer, then execute orca-slicer.exe to start the application.
|
||||||
>> *If you have troubles to run the build, you might need to install following runtimes:*
|
- *If you have troubles to run the build, you might need to install following runtimes:*
|
||||||
>> - [MicrosoftEdgeWebView2RuntimeInstallerX64](https://github.com/SoftFever/BambuStudio-SoftFever/releases/download/v1.0.10-sf2/MicrosoftEdgeWebView2RuntimeInstallerX64.exe)
|
- [MicrosoftEdgeWebView2RuntimeInstallerX64](https://github.com/SoftFever/BambuStudio-SoftFever/releases/download/v1.0.10-sf2/MicrosoftEdgeWebView2RuntimeInstallerX64.exe)
|
||||||
>> - [vcredist2019_x64](https://github.com/SoftFever/BambuStudio-SoftFever/releases/download/v1.0.10-sf2/vcredist2019_x64.exe)
|
- [vcredist2019_x64](https://github.com/SoftFever/BambuStudio-SoftFever/releases/download/v1.0.10-sf2/vcredist2019_x64.exe)
|
||||||
|
|
||||||
**Mac**:
|
**Mac**:
|
||||||
> 1. Download the right binaries for your computer: `arm64` version for Apple Silicon and `x86_64` for Intel CPU.
|
1. Download the right binaries for your computer: `arm64` version for Apple Silicon and `x86_64` for Intel CPU.
|
||||||
> 2. Double click to unzip the package, move OrcaSlicer.app to Application folder.
|
2. Double click to unzip the package, move OrcaSlicer.app to Application folder.
|
||||||
> 3. Run the following command in the terminal to allow running unsigned applications:
|
3. The app is signed but not notarized at the moment due to the proptiery network plugin.
|
||||||
>>>> `xattr -dr com.apple.quarantine /Applications/OrcaSlicer.app`.
|
We have two options to make it run on our machines
|
||||||
|
- Option 1:
|
||||||
|
Execute this command in terminal: `xattr -dr com.apple.quarantine /Applications/OrcaSlicer.app`
|
||||||
|
```console
|
||||||
|
softfever@mac:~$ xattr -dr com.apple.quarantine /Applications/OrcaSlicer.app
|
||||||
|
```
|
||||||
|
- Option 2:
|
||||||
|
- Step 1: open the app, a warning window will pop up
|
||||||
|

|
||||||
|
- Step 2: in `System Settings` -> `Privacy & Security`, click `Open Anyway`:
|
||||||
|

|
||||||
|
|
||||||
**Linux(Ubuntu)**:
|
**Linux(Ubuntu)**:
|
||||||
> Run the downlaoded AppImage.
|
1. If you run into trouble to execute it, try this command in terminal:
|
||||||
|
`chmod +x /path_to_appimage/OrcaSlicer_ubu64.AppImage`
|
||||||
# How to compile
|
# How to compile
|
||||||
- Windows 64-bit
|
- Windows 64-bit
|
||||||
- Tools needed: Visual Studio 2019, Cmake, git, Strawberry Perl.
|
- Tools needed: Visual Studio 2019, Cmake, git, Strawberry Perl.
|
||||||
|
@ -44,6 +55,9 @@ Prebuilt binaries are available through the [github releases page](https://githu
|
||||||
- Tools needed: Xcode, Cmake, git, gettext
|
- Tools needed: Xcode, Cmake, git, gettext
|
||||||
- run `build_release_macos.sh`
|
- run `build_release_macos.sh`
|
||||||
|
|
||||||
|
- Ubuntu
|
||||||
|
- run `BuildLinux.sh -udisr`
|
||||||
|
|
||||||
|
|
||||||
# License
|
# License
|
||||||
Orca Slicer is licensed under the GNU Affero General Public License, version 3. Orca Slicer is based on Bambu Studio by BambuLab.
|
Orca Slicer is licensed under the GNU Affero General Public License, version 3. Orca Slicer is based on Bambu Studio by BambuLab.
|
||||||
|
|
BIN
SoftFever_doc/mac_cant_open.png
Normal file
BIN
SoftFever_doc/mac_cant_open.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
BIN
SoftFever_doc/mac_security_setting.png
Normal file
BIN
SoftFever_doc/mac_security_setting.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
Loading…
Reference in a new issue