From a23a55f6a2f9092ba2b8566a5bcefc3283df6cf4 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Tue, 1 Oct 2013 23:02:31 -0500 Subject: [PATCH] Update changelog and version # --- changelog | 14 ++++++++++++++ lib/server.js | 2 +- package.json | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/changelog b/changelog index 7e1d3292..21804177 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,17 @@ +Tue Oct 01 22:57 2013 CDT + * lib/asyncqueue.js: Add a generalized queue class for queueing async + functions to execute in order + * lib/channel.js, lib/playlist.js: Clean up playlist addition/move/ + deletion. Should fix #285. + * lib/server.js: Fix announcement initialization to null + * tests/naokosimulator2013.js: Add a simple bot that authenticates + and vomits a giant list of videos into a channel + * www/assets/js/callbacks.js, www/assets/js/util.js: Clean up + playlist add/move/delete + * www/assets/js/data.js: Update CL_VERSION which I always forget + to do. + * www/assets/js/ui.js: Small fix to comply with server changes + Fri Sep 27 10:27 2013 CDT * lib/channel.js: Change the link regex, change the way 'affects links' works. The default link filter will only transform a link of no diff --git a/lib/server.js b/lib/server.js index 9dcd396a..e010215e 100644 --- a/lib/server.js +++ b/lib/server.js @@ -8,7 +8,7 @@ var Logger = require("./logger"); var Channel = require("./channel"); var User = require("./user"); -const VERSION = "2.4.2"; +const VERSION = "2.4.3"; function getIP(req) { var raw = req.connection.remoteAddress; diff --git a/package.json b/package.json index 89e4d2db..50e7316a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Calvin Montgomery", "name": "CyTube", "description": "Online media synchronizer and chat", - "version": "2.4.2", + "version": "2.4.3", "repository": { "url": "http://github.com/calzoneman/sync" },