From 0bdb63a2c08e1f1eb488fe88fa74b7e00dd1a659 Mon Sep 17 00:00:00 2001 From: Jan-Piet Mens Date: Tue, 29 Sep 2015 09:35:35 +0200 Subject: [PATCH] message --- Changelog | 10 ++++++++++ hooks.c | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 6d71094..7e3daaa 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,13 @@ + +- FIX: index.html uses UTC to go back in time +- NEW: recorder can use Lua otr_putrec() to prohibit REC file writing (#27) +- FIX: storage removes waypoints on kill (#34) +- FIX: storage removes photo on kill (#30) +- FIX: exit if HTTP port cannot be opened +- FIX: lowercase T in date formats allowed (#44) +- FIX: websockets switch to WSS when content served over HTTPS (#43) +- FIX: live map now shows user/device (#42) + 2015-09-26 version 0.4.1 - FIX: recorder correctly handles topics with leading slash - NEW: Lua functions (putdb, getdb) have access to a `luadb'-named LMDB database diff --git a/hooks.c b/hooks.c index 2d8f9ca..81c28ec 100644 --- a/hooks.c +++ b/hooks.c @@ -87,7 +87,7 @@ struct luadata *hooks_init(struct udata *ud, char *script) LuaDB = ud->luadb; #endif - olog(LOG_DEBUG, "initializing Lua hooks at %s", script); + olog(LOG_DEBUG, "initializing Lua hooks from `%s'", script); /* Load the Lua script */ if (luaL_dofile(ld->L, ld->script)) {