aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-02-21 11:24:01 +0100
committerRoger Braun <roger@rogerbraun.net>2017-02-21 11:24:01 +0100
commitb98cfbfade5bf5469341620eb26e6f4611f73ca8 (patch)
treeaa296802207188daa3a235372ffcc740e92f350e /CHANGELOG
parent5d8b2eb8b57efa36f9bde45fbbffc2e19f675eb4 (diff)
parent132d50219445eed68f2269f3afe503bbaa9645cc (diff)
Merge branch 'develop' into feature/hash-routed
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG35
1 files changed, 35 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 00000000..ca2ebcfa
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,35 @@
+## 2017-02-20
+
+- Overall CSS styling fixes
+- Current theme is displayed in theme selector
+- Theme selector is moved to the settings page
+- Oembed attachments will now display correctly
+- Styling changes to the user info cards
+- Notification count in title
+- Better Notification handling (persistance, mark as read)
+- Post statuses with ctrl+enter
+- Links in statuses open in a new tab
+- Optimized mobile view
+- Fix crash on persistance failure
+- Compress persisted state
+- Sync mutes with backend (SEE NOTE BELOW)
+
+Pleroma will now try to get the current mutes from the backend. Sadly, a bug in
+Qvitter will not allow getting the mutes from the endpoint, because it will
+ignore HTTP Basic authentication. Mutes will still persist in Pleroma through
+localstorage, but the mutes from Qvitter won't be picked up if the call fails.
+
+The patch for Qvitter:
+
+--- a/actions/apiqvittermutes.php
++++ b/actions/apiqvittermutes.php
+@@ -74,7 +74,7 @@ class ApiQvitterMutesAction extends ApiPrivateAuthAction
+ {
+ parent::handle();
+
+- $this->target = Profile::current();
++ $this->target = $this->scoped;
+
+ if(!$this->target instanceof Profile) {
+ $this->clientError(_('You have to be logged in to view your mutes.'), 403);
+