2018/07/03 0.2.0
Added
- config can now contain the
id
of a board, which allows adding public
Trello boards as well. Related to breaking change note regarding config.js below.
- can display labels (with toggle: show or hide)
<ListTabs \/>
added
- list
pattern
can be modified with query parameters. Examples:
Changed
- Breaking: boards config in
config.js
changed:
// previous config
boards: [
{
// ...
board: 'hello-world', // renamed to 'name'
},
],
// new config
boards: [
{
// ...
name: 'hello-world', // new property 'name'
id: 'board-1', // optional, see README
},
],
- Breaking:
config.js
can now contain multiple lists
patterns, each list
will be available in the <ListTabs \/>
component and can later be used to
select a specific list. All filters work as expected and as before (also with
deeplinking for the list patterns)
// previous config
boards: [
{
// ...
lists: /#upcoming/,
},
],
// new config
lists: [/#upcoming/],
boards: [
{
// does not contain lists anymore
},
],
- Note: even though semver would suggest adding releasing a major release, I
decided to stick to 0.2.y still until further notice.