logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe

CHANGELOG (1274B)


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