Compare commits
No commits in common. "master" and "v1.0" have entirely different histories.
4 changed files with 3 additions and 48 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -29,5 +29,4 @@ go.work.sum
|
||||||
.vscode/
|
.vscode/
|
||||||
*.AppImage
|
*.AppImage
|
||||||
squashfs-root/
|
squashfs-root/
|
||||||
/lychee-slicer*
|
/lychee-slicer*
|
||||||
build/
|
|
39
README.md
39
README.md
|
@ -1,38 +1,3 @@
|
||||||
# lychee slicer plus crack
|
# lychee-slicer
|
||||||
|
|
||||||
unlocks all plus features that don't require a cloud connection
|
Lychee Slicer
|
||||||
|
|
||||||
# Installation
|
|
||||||
|
|
||||||
## Windows
|
|
||||||
|
|
||||||
1. Install [Lychee Slicer](https://mango3d.io/download-lychee-slicer) to the **DEFAULT** location (important if you don't want to manually specify the path later)
|
|
||||||
2. Download the latest release from the [releases page](https://vaclive.party/software/lychee-slicer/releases/latest). (look for lychee-slicer.exe)
|
|
||||||
3. (Optional) verify the downloaded files using PGP
|
|
||||||
4. run the downloaded launcher
|
|
||||||
5. (On first setup and after update) you might need to grant the launcher permission patch files in the Lychee Slicer installation directory
|
|
||||||
6. The program will start automatically after patching, login as usual if you haven't already
|
|
||||||
7. From now on, you have to use the launcher to start Lychee Slicer. Opening the original executable will not work. (I suggest making a shortcut to the launcher)
|
|
||||||
|
|
||||||
### custom installation path
|
|
||||||
|
|
||||||
specify the path on the command line in the `-program` argument like this: `lychee-slicer-launcher-windows.exe -program "C:\path\to\LycheeSlicer.exe"`
|
|
||||||
|
|
||||||
## Linux
|
|
||||||
|
|
||||||
### Arch Linux
|
|
||||||
|
|
||||||
1. build or download the package from [here](https://vaclive.party/arch/lychee-slicer-patched)
|
|
||||||
|
|
||||||
### Other distributions
|
|
||||||
|
|
||||||
1. Download and extract the latest lychee slicer release. (you should have a directory with the lycheeslicer executable)
|
|
||||||
2. Download the latest release from the [releases page](https://vaclive.party/software/lychee-slicer/releases/latest). (look for lychee-slicer)
|
|
||||||
3. (Optional) verify the downloaded files using PGP
|
|
||||||
4. give the launcher execute permissions (`chmod +x lychee-slicer-launcher-linux`)
|
|
||||||
5. run `./lychee-slicer-launcher-linux -program /path/to/lycheeslicer` to patch and start the lychee slicer
|
|
||||||
|
|
||||||
## macOS
|
|
||||||
|
|
||||||
1. throw the computer out of the window
|
|
||||||
2. buy a real computer
|
|
8
build.sh
8
build.sh
|
@ -1,8 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
mkdir -p build
|
|
||||||
GOOS=windows GOARCH=amd64 go build -ldflags "-H=windowsgui -s -w" -o build/lychee-slicer-launcher-windows.exe
|
|
||||||
GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -o build/lychee-slicer-launcher-linux
|
|
||||||
|
|
||||||
gpg --output build/lychee-slicer-launcher-windows.exe.sig --detach-sig build/lychee-slicer-launcher-windows.exe
|
|
||||||
gpg --output build/lychee-slicer-launcher-linux.sig --detach-sig build/lychee-slicer-launcher-linux
|
|
1
main.go
1
main.go
|
@ -170,7 +170,6 @@ func main() {
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
cmd := exec.Command(*program, fmt.Sprintf("--proxy-server=%s:%d", ip, port), "--ignore-certificate-errors")
|
cmd := exec.Command(*program, fmt.Sprintf("--proxy-server=%s:%d", ip, port), "--ignore-certificate-errors")
|
||||||
cmd.Args = append(cmd.Args, flag.Args()...)
|
|
||||||
cmd.Stdout = os.Stdout
|
cmd.Stdout = os.Stdout
|
||||||
cmd.Stderr = os.Stderr
|
cmd.Stderr = os.Stderr
|
||||||
log.Fatal(cmd.Run())
|
log.Fatal(cmd.Run())
|
||||||
|
|
Loading…
Reference in a new issue