This repository was archived by the owner on May 27, 2019. It is now read-only.
File tree 5 files changed +16
-11
lines changed
5 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 2
2
CHANGELOG
3
3
=========
4
4
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)
6
11
==================
7
12
+ Added dimensions when returning the attached Twitter Image
8
13
+ Fixes Facebook support: initially developed on `2.1 ` while the GraphAPI assumes `2.8 `.
9
14
+ Added Facebook field configuration
10
15
+ Added Twitter options via default config
11
16
12
- 0.2.0 (2016.10.06 )
17
+ 0.2.0 (06-10-2016 )
13
18
==================
14
19
+ Added Facebook support
15
20
+ Added ability to mix all the feeds; just leave feedconfig empty in `SocialFeedPage ` or `SocialFeedBlock `.
16
21
+ Made all returned data avaiable in `FeedItem ` objects, even if it is not stored explicitly.
17
22
18
- 0.1.0 (2016.09.27 )
23
+ 0.1.0 (27-09-2016 )
19
24
==================
20
25
+ Fixed PyPI long_description format error
21
26
+ Fixed value_for_form error in FeedChooserBlock
22
27
23
- 0.1.dev4 (2016.09.27 )
28
+ 0.1.dev4 (27-09-2016 )
24
29
=====================
25
30
+ Made looping over multiple result pages more DRY
26
31
+ Improved moderate page title
27
32
+ Fixed AttributeError in FeedChooserBlock.value_for_form
28
33
29
- 0.1.dev3 (2016.09.11 )
34
+ 0.1.dev3 (11-09-2016 )
30
35
=====================
31
36
+ Updated license model to BSD
32
37
33
- 0.1.dev2 (2016.09.04 )
38
+ 0.1.dev2 (04-09-2016 )
34
39
=====================
35
40
+ Added block type 'SocialFeedBlock'
36
41
+ Added SocialFeedModerateMenu which live detects configuration changes
37
42
+ Added FeedItem to consolidate the item/post structure
38
43
+ Added search functionality to the Feed objects
39
44
+ Dropped Wagtail 1.5 support in favour of using the IntegerBlock
40
45
41
- 0.1.dev1 (2016.09.01 )
46
+ 0.1.dev1 (01-09-2016 )
42
47
=====================
43
48
+ First implementation
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.3 .0
2
+ current_version = 0.4 .0
3
3
commit = False
4
4
tag = False
5
5
Original file line number Diff line number Diff line change 41
41
42
42
setup (
43
43
name = 'wagtailsocialfeed' ,
44
- version = '0.3 .0' ,
44
+ version = '0.4 .0' ,
45
45
description = "A Wagtail module that provides pages and content blocks to show social media feeds" , # NOQA
46
46
long_description = readme + '\n \n ' + changelog ,
47
47
author = "Tim Leguijt" ,
Original file line number Diff line number Diff line change 4
4
5
5
Tests for `wagtailsocialfeed.blocks`.
6
6
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.
8
8
In Combination of Django 1.11 and Wagtail 1.9, `ImportError` Exception is occurring in wagtailimage.
9
9
10
10
from 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