Skip to content

Releases: gsec0/epdmagic

v0.2.1

04 Mar 20:32

Choose a tag to compare

🚀 Release [v0.2.1]

📝 Summary

Removed SSL authentication for self-signed domains.


🐳 Docker .tar load instructions

To import the image from the .tar release:

  1. Download the latest epdmagic_ xxx.tar release.
  2. Load the image into docker.
docker load -i epdmagic_xxx.tar

# Run
docker run -d -p 9600:8000 --name epdmagic epdmagic:latest

🐳 Docker build instructions

To build the image from the provided Dockerfile:

  1. Clone or download the repo.
  2. Build the docker image.
cd ./epdmagic

# Build
docker build -t epdmagic:latest .

# Run
docker run -d -p 9600:8000 --name epdmagic epdmagic:latest

v0.2.0

11 Feb 23:22

Choose a tag to compare

🚀 Release [v0.2.0]

📝 Summary

Introduced custom target width/height query parameters (defaults are 800x480 if not specified) also rotates the input image to match the target orientation to best fit the image to the canvas.


✨ What’s New

  • Custom target width and height: You can now specify a custom target width and height dimention using the width and height query parameters in the URL.
  • Rotate to best fit: Input images are rotated to match the output orientation to best fit to the canvas.

🐳 Docker build instructions

To build the image from the provided Dockerfile:

  1. Clone or download the repo.
  2. Build the docker image.
cd ./epdmagic

# Build
docker build -t epdmagic:latest .

# Run
docker run -d -p 9600:8000 --name epdmagic epdmagic:latest

TODO

  • Add pre-built images.

v0.1.0 - Initial release

11 Feb 01:46

Choose a tag to compare

🚀 Initial release