--- a/src/egonomy/__init__.py Tue Mar 19 16:39:33 2013 +0100
+++ b/src/egonomy/__init__.py Tue Mar 19 17:59:06 2013 +0100
@@ -1,4 +1,4 @@
-VERSION = (0, 3, 0, "alpha", 0)
+VERSION = (0, 3, 1, "alpha", 0)
VERSION_STR = unicode(".".join(map(lambda i:"%02d" % (i,), VERSION[:2])))
--- a/src/egonomy/static/egonomy/js/cutout.js Tue Mar 19 16:39:33 2013 +0100
+++ b/src/egonomy/static/egonomy/js/cutout.js Tue Mar 19 17:59:06 2013 +0100
@@ -203,7 +203,7 @@
var transd = "M"
+ points.map(function(p) { return (p.x / paper.width).toString().replace(/(\.\d{4})\d*/,"$1") + " " + (p.y / paper.height).toString().replace(/(\.\d{4})\d*/,"$1") }).join("L")
+ "Z";
- $(".fragment-path").val(transd);
+ $(".fragment-path").val(transd).change();
}
var dragdeltax, dragdeltay, pathDragging;