mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge branch 'master' of github.com:matrix-org/synapse into develop
Conflicts: CHANGES.rst
This commit is contained in:
commit
9f633bc125
21
CHANGES.rst
21
CHANGES.rst
@ -1,18 +1,19 @@
|
|||||||
Changes in synapse 0.2.1 (2014-09-03)
|
Changes in synapse 0.2.1 (2014-09-03)
|
||||||
=====================================
|
=====================================
|
||||||
Webclient:
|
|
||||||
* Implement 3PID login via email address
|
|
||||||
* Support for user management via IRC-style /kick, /ban/, /op
|
|
||||||
style slash commands
|
|
||||||
* Display user power levels in room member list as a red bar
|
|
||||||
|
|
||||||
Homeserver:
|
Homeserver:
|
||||||
* Add synctl init.d style control script
|
* Added support for signing up with a third party id.
|
||||||
* Implement identity server integration for 3PID signup
|
* Add synctl scripts.
|
||||||
* Implement rate limiting
|
* Added rate limiting.
|
||||||
* Implement content upload size limiting
|
* Add option to change the external address the content repo uses.
|
||||||
* Bug fixes to power_levels
|
* Presence bug fixes.
|
||||||
|
|
||||||
|
Webclient:
|
||||||
|
* Added support for signing up with a third party id.
|
||||||
|
* Added support for banning and kicking users.
|
||||||
|
* Added support for displaying and setting ops.
|
||||||
|
* Added support for room names.
|
||||||
|
* Fix bugs with room membership event display.
|
||||||
|
|
||||||
Changes in synapse 0.2.0 (2014-09-02)
|
Changes in synapse 0.2.0 (2014-09-02)
|
||||||
=====================================
|
=====================================
|
||||||
|
@ -16,4 +16,4 @@
|
|||||||
""" This is a reference implementation of a synapse home server.
|
""" This is a reference implementation of a synapse home server.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.2.0"
|
__version__ = "0.2.1"
|
||||||
|
6
synctl
6
synctl
@ -4,6 +4,7 @@ SYNAPSE="synapse/app/homeserver.py"
|
|||||||
|
|
||||||
CONFIGFILE="homeserver.yaml"
|
CONFIGFILE="homeserver.yaml"
|
||||||
PIDFILE="homeserver.pid"
|
PIDFILE="homeserver.pid"
|
||||||
|
LOGFILE="homeserver.log"
|
||||||
|
|
||||||
GREEN=$'\e[1;32m'
|
GREEN=$'\e[1;32m'
|
||||||
NORMAL=$'\e[m'
|
NORMAL=$'\e[m'
|
||||||
@ -21,13 +22,12 @@ case "$1" in
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo -n "Starting ..."
|
echo -n "Starting ..."
|
||||||
$SYNAPSE --daemonize -c "$CONFIGFILE" --pid-file "$PIDFILE" --log-file synapse.log
|
$SYNAPSE --daemonize -c "$CONFIGFILE" --pid-file "$PIDFILE" --log-file "$LOGFILE"
|
||||||
echo "${GREEN}started${NORMAL}"
|
echo "${GREEN}started${NORMAL}"
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
echo -n "Stopping ..."
|
echo -n "Stopping ..."
|
||||||
test -f $PIDFILE && kill `cat $PIDFILE`
|
test -f $PIDFILE && kill `cat $PIDFILE` && echo "${GREEN}stopped${NORMAL}"
|
||||||
echo "${GREEN}stopped${NORMAL}"
|
|
||||||
;;
|
;;
|
||||||
restart)
|
restart)
|
||||||
$0 stop && $0 start
|
$0 stop && $0 start
|
||||||
|
Loading…
Reference in New Issue
Block a user