Skip to content

Commit

Permalink
Merge pull request #22011 from wordpress-mobile/task/enable-media-ff
Browse files Browse the repository at this point in the history
Enable Media Modernization feature flag and update release notes
  • Loading branch information
kean committed Nov 9, 2023
2 parents 314661f + 6c72e90 commit 1511635
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
* [*] Posts & Pages: Fix an issue with the Pages list not refreshing when the pages are added or modified
* [*] Posts & Pages: Fix an issue where “View” action was available for Trashed posts (#21958)
* [*] Posts & Pages: Fix rare crashes in Posts & Pages (#21298)
* [***] Site Media: Update the design of the Site Media screen with an improved selection mode, updated context menus, a way to share more than one item at a time, better support for animated GIFs, fix a couple of visual issues with state views and search, and more [#21457]
* [**] Site Media: Improve performance by moving the work to the background, reducing memory usage, prefetching images, decompressing jpegs in the background, canceling unneeded requests, and more [#21470], [#21615], [#21664]
* [**] Site Media: Add support for selecting site media with a pan gesture [#21702]
* [*] Site Media: Add storage quota shown proactively in the context menu when adding media [#22013]
* [*] Site Media: Add aspect ratio mode to Site Media on iPad, which is a new default [#22009]
* [**] Site Media: Update the design of the Site Media details view that now allows swiping between photos, makes it easier to modify metadata, and delete items [#22008]
* [*] Site Media: Fix an issue with blank image placeholders on the Site Media screen [#21457]
* [*] Site Media: Fix an issue with 'you have no media' appears just before the media does [#9922] [#21457]
* [*] Site Media: Fix an issue with media occasionally flashing white on the Site Media screen
* [*] Site Media: Fix rare crashes in the Site Media screen and media picker [#21572]
* [*] Bug fix: Reader now scrolls to the top when tapping the status bar. [#21914]
* [*] [internal] Refactor sending the API requests for searching posts and pages. [#21976]
* [*] Fix an issue in Menu screen where it fails to create default menu items. [#21949]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ enum FeatureFlag: Int, CaseIterable {
case .domainFocus:
return true
case .mediaModernization:
return false
return true
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ final class SiteMediaCollectionViewController: UIViewController, NSFetchedResult
view.addSubview(collectionView)
collectionView.translatesAutoresizingMaskIntoConstraints = false
collectionView.pinSubviewToAllEdges(view)
collectionView.accessibilityIdentifier = "MediaCollection"

collectionView.dataSource = self
collectionView.delegate = self
Expand Down

0 comments on commit 1511635

Please sign in to comment.