mirror of https://github.com/calzoneman/sync.git
Update changelog and version #
This commit is contained in:
parent
1e2a142524
commit
a23a55f6a2
14
changelog
14
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
|
Fri Sep 27 10:27 2013 CDT
|
||||||
* lib/channel.js: Change the link regex, change the way 'affects links'
|
* lib/channel.js: Change the link regex, change the way 'affects links'
|
||||||
works. The default link filter will only transform a link of no
|
works. The default link filter will only transform a link of no
|
||||||
|
|
|
@ -8,7 +8,7 @@ var Logger = require("./logger");
|
||||||
var Channel = require("./channel");
|
var Channel = require("./channel");
|
||||||
var User = require("./user");
|
var User = require("./user");
|
||||||
|
|
||||||
const VERSION = "2.4.2";
|
const VERSION = "2.4.3";
|
||||||
|
|
||||||
function getIP(req) {
|
function getIP(req) {
|
||||||
var raw = req.connection.remoteAddress;
|
var raw = req.connection.remoteAddress;
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"author": "Calvin Montgomery",
|
"author": "Calvin Montgomery",
|
||||||
"name": "CyTube",
|
"name": "CyTube",
|
||||||
"description": "Online media synchronizer and chat",
|
"description": "Online media synchronizer and chat",
|
||||||
"version": "2.4.2",
|
"version": "2.4.3",
|
||||||
"repository": {
|
"repository": {
|
||||||
"url": "http://github.com/calzoneman/sync"
|
"url": "http://github.com/calzoneman/sync"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue