Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
16a88842
Commit
16a88842
authored
8 years ago
by
Erik Johnston
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of github.com:matrix-org/synapse into develop
parents
5ee5b655
ba0406d1
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGES.rst
+10
-0
10 additions, 0 deletions
CHANGES.rst
README.rst
+8
-7
8 additions, 7 deletions
README.rst
contrib/systemd/synapse.service
+1
-0
1 addition, 0 deletions
contrib/systemd/synapse.service
synapse/__init__.py
+1
-1
1 addition, 1 deletion
synapse/__init__.py
with
20 additions
and
8 deletions
CHANGES.rst
+
10
−
0
View file @
16a88842
Changes in synapse v0.16.0 (2016-06-09)
=======================================
NB: As of v0.14 all AS config files must have an ID field.
Bug fixes:
* Don't make rooms published by default (PR #857)
Changes in synapse v0.16.0-rc2 (2016-06-08)
===========================================
...
...
This diff is collapsed.
Click to expand it.
README.rst
+
8
−
7
View file @
16a88842
...
...
@@ -58,12 +58,13 @@ the spec in the context of a codebase and let you run your own homeserver and
generally help bootstrap the ecosystem.
In Matrix, every user runs one or more Matrix clients, which connect through to
a Matrix homeserver which stores all their personal chat history and user
account information - much as a mail client connects through to an IMAP/SMTP
server. Just like email, you can either run your own Matrix homeserver and
control and own your own communications and history or use one hosted by
someone else (e.g. matrix.org) - there is no single point of control or
mandatory service provider in Matrix, unlike WhatsApp, Facebook, Hangouts, etc.
a Matrix homeserver. The homeserver stores all their personal chat history and
user account information - much as a mail client connects through to an
IMAP/SMTP server. Just like email, you can either run your own Matrix
homeserver and control and own your own communications and history or use one
hosted by someone else (e.g. matrix.org) - there is no single point of control
or mandatory service provider in Matrix, unlike WhatsApp, Facebook, Hangouts,
etc.
Synapse ships with two basic demo Matrix clients: webclient (a basic group chat
web client demo implemented in AngularJS) and cmdclient (a basic Python
...
...
@@ -617,7 +618,7 @@ Building internal API documentation::
H
a
lp!! Synapse eats all my RAM!
H
e
lp!! Synapse eats all my RAM!
===============================
Synapse's architecture is quite RAM hungry currently - we deliberately
...
...
This diff is collapsed.
Click to expand it.
contrib/systemd/synapse.service
+
1
−
0
View file @
16a88842
...
...
@@ -9,6 +9,7 @@ Description=Synapse Matrix homeserver
Type
=
simple
User
=
synapse
Group
=
synapse
EnvironmentFile
=
-/etc/sysconfig/synapse
WorkingDirectory
=
/var/lib/synapse
ExecStart
=
/usr/bin/python2.7 -m synapse.app.homeserver --config-path=/etc/synapse/homeserver.yaml --log-config=/etc/synapse/log_config.yaml
...
...
This diff is collapsed.
Click to expand it.
synapse/__init__.py
+
1
−
1
View file @
16a88842
...
...
@@ -16,4 +16,4 @@
"""
This is a reference implementation of a Matrix home server.
"""
__version__
=
"
0.16.0
-rc2
"
__version__
=
"
0.16.0
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment