CHANGELOG 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ## 2017-02-20
  2. - Overall CSS styling fixes
  3. - Current theme is displayed in theme selector
  4. - Theme selector is moved to the settings page
  5. - Oembed attachments will now display correctly
  6. - Styling changes to the user info cards
  7. - Notification count in title
  8. - Better Notification handling (persistance, mark as read)
  9. - Post statuses with ctrl+enter
  10. - Links in statuses open in a new tab
  11. - Optimized mobile view
  12. - Fix crash on persistance failure
  13. - Compress persisted state
  14. - Sync mutes with backend (SEE NOTE BELOW)
  15. Pleroma will now try to get the current mutes from the backend. Sadly, a bug in
  16. Qvitter will not allow getting the mutes from the endpoint, because it will
  17. ignore HTTP Basic authentication. Mutes will still persist in Pleroma through
  18. localstorage, but the mutes from Qvitter won't be picked up if the call fails.
  19. The patch for Qvitter:
  20. --- a/actions/apiqvittermutes.php
  21. +++ b/actions/apiqvittermutes.php
  22. @@ -74,7 +74,7 @@ class ApiQvitterMutesAction extends ApiPrivateAuthAction
  23. {
  24. parent::handle();
  25. - $this->target = Profile::current();
  26. + $this->target = $this->scoped;
  27. if(!$this->target instanceof Profile) {
  28. $this->clientError(_('You have to be logged in to view your mutes.'), 403);