This repository was archived by the owner on May 27, 2019. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22CHANGELOG
33=========
44
5- 0.3.0 (2016.10.28)
5+ 0.4.0 (16-08-2017)
6+ ==================
7+ + Dropped support for Wagtail 1.6, 1.7
8+ + Added support for Wagtail 1.9, 1.10 and 1.11
9+
10+ 0.3.0 (28-10-2016)
611==================
712+ Added dimensions when returning the attached Twitter Image
813+ Fixes Facebook support: initially developed on `2.1 ` while the GraphAPI assumes `2.8 `.
914+ Added Facebook field configuration
1015+ Added Twitter options via default config
1116
12- 0.2.0 (2016.10.06 )
17+ 0.2.0 (06-10-2016 )
1318==================
1419+ Added Facebook support
1520+ Added ability to mix all the feeds; just leave feedconfig empty in `SocialFeedPage ` or `SocialFeedBlock `.
1621+ Made all returned data avaiable in `FeedItem ` objects, even if it is not stored explicitly.
1722
18- 0.1.0 (2016.09.27 )
23+ 0.1.0 (27-09-2016 )
1924==================
2025+ Fixed PyPI long_description format error
2126+ Fixed value_for_form error in FeedChooserBlock
2227
23- 0.1.dev4 (2016.09.27 )
28+ 0.1.dev4 (27-09-2016 )
2429=====================
2530+ Made looping over multiple result pages more DRY
2631+ Improved moderate page title
2732+ Fixed AttributeError in FeedChooserBlock.value_for_form
2833
29- 0.1.dev3 (2016.09.11 )
34+ 0.1.dev3 (11-09-2016 )
3035=====================
3136+ Updated license model to BSD
3237
33- 0.1.dev2 (2016.09.04 )
38+ 0.1.dev2 (04-09-2016 )
3439=====================
3540+ Added block type 'SocialFeedBlock'
3641+ Added SocialFeedModerateMenu which live detects configuration changes
3742+ Added FeedItem to consolidate the item/post structure
3843+ Added search functionality to the Feed objects
3944+ Dropped Wagtail 1.5 support in favour of using the IntegerBlock
4045
41- 0.1.dev1 (2016.09.01 )
46+ 0.1.dev1 (01-09-2016 )
4247=====================
4348+ First implementation
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.3 .0
2+ current_version = 0.4 .0
33commit = False
44tag = False
55
Original file line number Diff line number Diff line change 4141
4242setup (
4343 name = 'wagtailsocialfeed' ,
44- version = '0.3 .0' ,
44+ version = '0.4 .0' ,
4545 description = "A Wagtail module that provides pages and content blocks to show social media feeds" , # NOQA
4646 long_description = readme + '\n \n ' + changelog ,
4747 author = "Tim Leguijt" ,
Original file line number Diff line number Diff line change 44
55Tests for `wagtailsocialfeed.blocks`.
66
7- In Wagtail 1.8 Function accepting only one parameter and that's why its raising TypeError
7+ In Wagtail 1.8 the get_context accepts only one parameter and that's why its raising TypeError.
88In Combination of Django 1.11 and Wagtail 1.9, `ImportError` Exception is occurring in wagtailimage.
99
1010from django.forms.widgets import flatatt
Original file line number Diff line number Diff line change 1- __version__ = '0.3 .0'
1+ __version__ = '0.4 .0'
You can’t perform that action at this time.
0 commit comments