summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2015-05-20 12:33:25 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2015-05-20 12:33:25 -0400
commit5c118b9e9a58e0ae09ddd74bea2a9823badb9ba5 (patch)
tree37822c5fed6584370d8e76b55ee2c88015a13568
parentd1dbf4775630fedcfa49a606dff46bf0f4bff28f (diff)
New release
-rw-r--r--CHANGELOG14
-rw-r--r--configure.ac4
2 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e4eae28e..838da410 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,18 @@
========
+20150520
+========
+
+- Change default behavior of client-side GUI event handlers:
+ By default, events are now passed to handlers on parent DOM nodes as well,
+ just like in normal JavaScript.
+ Call [preventDefault] or [stopPropagation] to tweak that behavior.
+ WARNING: This change may break backward compatibility!
+- URIs specified with 'file' .urp directive are implicitly allowed to be referenced.
+- New HTML tags: <fieldset>, <legend>
+- New urweb-mode Emacs command: 'urweb-close-matching-tag'
+- Bug fixes
+
+========
20150412
========
diff --git a/configure.ac b/configure.ac
index 3adbdef2..89620c40 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
-AC_INIT([urweb], [20150412])
-WORKING_VERSION=1
+AC_INIT([urweb], [20150520])
+WORKING_VERSION=0
AC_USE_SYSTEM_EXTENSIONS
# automake 1.12 requires this, but automake 1.11 doesn't recognize it