From 8c5e4c644cb5bb14dd379c27e44cdb812d13b343 Mon Sep 17 00:00:00 2001 From: Jon Nordby Date: Wed, 30 Apr 2014 03:45:27 +0200 Subject: [PATCH] Update README and CHANGES for release --- CHANGES.md | 9 +++++---- README.md | 15 ++++++++++----- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 45464f1..0d8112b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,18 +1,18 @@ imgflo 0.1.0 ============= -Released: N/A +Released: April 30th, 2014 imgflo now consists of two complimentary parts: a Flowhub-compatible runtime for interactively building image processing graphs, and an image processing server for image processing on the web. The runtime combined with the Flowhub IDE allows to visually create image -processing pipelines in a node-based manner, similar to the Blender node compositor. +processing pipelines in a node-based manner, similar to tools like the Blender node compositor. Live image output is displayed in the preview area in Flowhub, and will update automatically when changing the graph. The server provides a HTTP API for processing an input image with an imgflo graph. -GET /graph/mygraph?input=base64(http://example.com/input-image.jpeg)¶m1=foo¶m2=bar +GET /graph/mygraph?input=urlencode(http://example.com/input-image.jpeg)¶m1=foo¶m2=bar The input and processed image result will be cached on disk. On later requests to the same URL, the image will be served from cache. @@ -20,8 +20,9 @@ On later requests to the same URL, the image will be served from cache. The server can be deployed to Heroku with zero setup, just push the git repository to an Heroku app. The operations used in imgflo are provided by GEGL, and new operations can be added using the C API. -A somewhat outdated list can be seen here: http://gegl.org/operations.html +A (somewhat outdated) list of operations can be seen here: http://gegl.org/operations.html +Blogpost: http://www.jonnor.com/2014/04/imgflo-0-1-an-image-processing-server-and-flowhub-runtime imgflo 0.0.1 ============= diff --git a/README.md b/README.md index cadac8b..3d5839e 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,16 @@ which can be visually programmed using [Flowhub.io](http://flowhub.io). imgflo is pronounced "Imageflo(w)". +Changelog +---------- +See [./CHANGES.md](./CHANGES.md) + +License +-------- +MIT + +Note: GEGL itself is under LGPLv3. + Deploying to Heroku ========================== @@ -100,8 +110,3 @@ Running server You should see your server running at http://localhost:8080 -License -======= -MIT - -Note: GEGL itself is under LGPLv3.