Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3f6e8e0
Update gutenberg-mobile reference
mkevins Mar 27, 2020
cccadc8
Update gutenberg-mobile reference
mkevins Mar 27, 2020
89cce9d
Add some patterns for media upload completion processing
mkevins Apr 6, 2020
e56de3e
fixup
mkevins Apr 6, 2020
8acc71d
Add some tests for cover block upload completion processing
mkevins Apr 6, 2020
15e381b
Add cover block upload completion processor
mkevins Apr 6, 2020
8972433
fixup
mkevins Apr 6, 2020
17d76d4
fixup
mkevins Apr 6, 2020
5a22a08
Handle nested blocks in processPost
mkevins Apr 6, 2020
3949fce
Update gutenberg-mobile reference
mkevins Apr 6, 2020
a476918
Merge branch 'develop' into feature/cover-block-uploads
mkevins Apr 6, 2020
57bc35d
Move json attributes processor to abstract block processor
mkevins Apr 6, 2020
812ee7f
Remove some cruft from upload completion processor patterns
mkevins Apr 6, 2020
5e1c92d
Use json parsing in other media-block processors
mkevins Apr 6, 2020
c38ba61
Use static map in media block type enum
mkevins Apr 7, 2020
d2c8a2f
Use static pattern in media block type enum
mkevins Apr 7, 2020
80ffb78
Add some comments and cleanup lint
mkevins Apr 7, 2020
c50b104
Update gutenberg-mobile reference
mkevins Apr 10, 2020
0a02cf8
Merge branch 'develop' into feature/cover-block-uploads
mkevins Apr 10, 2020
e6c78af
Update gutenberg-mobile reference
mkevins Apr 10, 2020
5acd7dc
Add unit test for malformed Cover block
mkevins Apr 14, 2020
57dcd82
Fix base case in processContent method
mkevins Apr 14, 2020
aba1654
Update gutenberg-mobile reference
mkevins Apr 14, 2020
d4da054
Merge branch 'develop' into feature/cover-block-uploads
mkevins Apr 14, 2020
29d19b4
Update gutenberg-mobile reference
mkevins Apr 15, 2020
f1e2f6e
Add upload processor test with different inline style order
mkevins Apr 21, 2020
4ba5103
Add upload processor test with space in inline styles
mkevins Apr 21, 2020
4716f03
Allow for spaces in inline styles for cover block upload processor
mkevins Apr 21, 2020
fcfbe8f
Update gutenberg-mobile reference
mkevins Apr 21, 2020
4e11d7b
Merge branch 'develop' into feature/cover-block-uploads
mkevins Apr 21, 2020
f1e302d
Fix lint
mkevins Apr 21, 2020
f053f12
Fix ktlint
mkevins Apr 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup
  • Loading branch information
mkevins committed Apr 6, 2020
commit 897243337fd116c2b4fb70078eb285ff24f7b885
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ enum MediaBlockType {
IMAGE("image"),
VIDEO("video"),
MEDIA_TEXT("media-text"),
GALLERY("gallery");
GALLERY("gallery"),
COVER("cover");

private final String mName;

Expand Down