Merge branch 'master' into dev
This commit is contained in:
commit
824078c6b8
|
@ -5,11 +5,15 @@ emqttd ChangeLog
|
||||||
0.8.1-alpha (2015-05-28)
|
0.8.1-alpha (2015-05-28)
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
Client [Presence](https://github.com/emqtt/emqttd/wiki/Presence) Support and [$SYS Topics](https://github.com/emqtt/emqttd/wiki/$SYS-Topics) Redesigned!
|
||||||
|
|
||||||
Bugfix: issue #138 - when client disconnected normally, broker will not publish disconnected $SYS message
|
Bugfix: issue #138 - when client disconnected normally, broker will not publish disconnected $SYS message
|
||||||
|
|
||||||
Bugfix: fix websocket url in emqttd/priv/www/websocket.html
|
Bugfix: fix websocket url in emqttd/priv/www/websocket.html
|
||||||
|
|
||||||
Improve: issue #136 - $SYS topics result should not include $SYS messages
|
Improve: etc/emqttd.config to allow websocket connections from any hosts
|
||||||
|
|
||||||
|
Improve: rel/reltool.config to exclude unnecessary apps.
|
||||||
|
|
||||||
|
|
||||||
0.8.0-alpha (2015-05-25)
|
0.8.0-alpha (2015-05-25)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{application, emqtt,
|
{application, emqtt,
|
||||||
[
|
[
|
||||||
{description, "Erlang MQTT Common Library"},
|
{description, "Erlang MQTT Common Library"},
|
||||||
{vsn, "0.9.0"},
|
{vsn, "0.8.1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, []},
|
||||||
{applications, [
|
{applications, [
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{application, emqttd,
|
{application, emqttd,
|
||||||
[
|
[
|
||||||
{description, "Erlang MQTT Broker"},
|
{description, "Erlang MQTT Broker"},
|
||||||
{vsn, "0.9.0"},
|
{vsn, "0.8.1"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, []},
|
{registered, []},
|
||||||
{applications, [kernel,
|
{applications, [kernel,
|
||||||
|
|
|
@ -174,10 +174,7 @@
|
||||||
%% Maximum number of concurrent clients
|
%% Maximum number of concurrent clients
|
||||||
{max_clients, 512},
|
{max_clients, 512},
|
||||||
%% Socket Access Control
|
%% Socket Access Control
|
||||||
{access, [
|
{access, [{allow, all}]},
|
||||||
{allow, "127.0.0.1"},
|
|
||||||
{deny, all}
|
|
||||||
]},
|
|
||||||
%% Socket Options
|
%% Socket Options
|
||||||
{sockopts, [
|
{sockopts, [
|
||||||
{backlog, 1024}
|
{backlog, 1024}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{lib_dirs, ["../apps", "../deps", "../plugins"]},
|
{lib_dirs, ["../apps", "../deps", "../plugins"]},
|
||||||
{erts, [{mod_cond, derived}, {app_file, strip}]},
|
{erts, [{mod_cond, derived}, {app_file, strip}]},
|
||||||
{app_file, strip},
|
{app_file, strip},
|
||||||
{rel, "emqttd", "0.9.0",
|
{rel, "emqttd", "0.8.1",
|
||||||
[
|
[
|
||||||
kernel,
|
kernel,
|
||||||
stdlib,
|
stdlib,
|
||||||
|
|
Loading…
Reference in New Issue