Skip to content

Commit 1b453f8

Browse files
committed
Merge branch 'master' into develop
2 parents 7f99062 + 6d8135f commit 1b453f8

15 files changed

+46
-16
lines changed

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased]
44

5+
## [1.3.0] - 2022-05-13
6+
7+
- Allow setting browser title separately from headline
8+
- Display optional empty-result placeholder in collection panel
9+
- Add ability to trash pages from collection panel
10+
- Allow custom order of actions in collection panel
11+
- Open external links in shortcut panel in new tab
12+
- Allow passing post params when reloading panels
13+
14+
## [1.2.1] - 2022-01-30
15+
16+
- Display details in empty number panels
17+
518
## [1.2.0] - 2021-10-14
619

720
- Allow grouping panels in tabs
@@ -211,8 +224,10 @@ Chart panel improvements:
211224

212225
- Initial public release
213226

214-
[Unreleased]: https://github.com/daun/processwire-dashboard/compare/v1.2.0...HEAD
227+
[Unreleased]: https://github.com/daun/processwire-dashboard/compare/v1.3.0...HEAD
215228

229+
[1.3.0]: https://github.com/daun/processwire-dashboard/releases/tag/v1.3.0
230+
[1.2.1]: https://github.com/daun/processwire-dashboard/releases/tag/v1.2.1
216231
[1.2.0]: https://github.com/daun/processwire-dashboard/releases/tag/v1.2.0
217232
[1.1.1]: https://github.com/daun/processwire-dashboard/releases/tag/v1.1.1
218233
[1.1.0]: https://github.com/daun/processwire-dashboard/releases/tag/v1.1.0

Dashboard.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use function ProcessWire\wireIconMarkup;
1313
* @author Philipp Daun <post@philippdaun.net>
1414
* @license GPL-3.0
1515
*
16-
* @version 1.1.1
16+
* @version 1.3.0
1717
*/
1818

1919
// Include abstract panel base class
@@ -31,7 +31,7 @@ class Dashboard extends Process implements Module
3131
'summary' => __('Configurable dashboard page', __FILE__),
3232
'href' => 'https://github.com/daun/processwire-dashboard',
3333
'author' => 'Philipp Daun',
34-
'version' => '1.1.1',
34+
'version' => '1.3.0',
3535
'icon' => 'compass',
3636
'permission' => 'dashboard-view',
3737
'permissions' => [

DashboardPanelAddNew.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class DashboardPanelAddNew extends DashboardPanel
1919
'title' => __('Dashboard Panel: Add New Page', __FILE__),
2020
'summary' => __('Allow adding new pages from the dashboard', __FILE__),
2121
'author' => 'Philipp Daun',
22-
'version' => '1.1.1',
22+
'version' => '1.3.0',
2323
]
2424
);
2525
}

DashboardPanelChart.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DashboardPanelChart extends DashboardPanel
1515
'title' => __('Dashboard Panel: Chart', __FILE__),
1616
'summary' => __('Display a customizable chart from any data source', __FILE__),
1717
'author' => 'Philipp Daun',
18-
'version' => '1.1.1',
18+
'version' => '1.3.0',
1919
]
2020
);
2121
}

DashboardPanelCollection.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class DashboardPanelCollection extends DashboardPanel
1818
'title' => __('Dashboard Panel: Collection', __FILE__),
1919
'summary' => __('Display a collection of pages in a table', __FILE__),
2020
'author' => 'Philipp Daun',
21-
'version' => '1.1.1',
21+
'version' => '1.3.0',
2222
]
2323
);
2424
}

DashboardPanelNotice.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class DashboardPanelNotice extends DashboardPanel
1616
'title' => __('Dashboard Panel: Notice', __FILE__),
1717
'summary' => __('Display a notice with icon', __FILE__),
1818
'author' => 'Philipp Daun',
19-
'version' => '1.1.1',
19+
'version' => '1.3.0',
2020
]
2121
);
2222
}

DashboardPanelNumber.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class DashboardPanelNumber extends DashboardPanel
1616
'title' => __('Dashboard Panel: Number', __FILE__),
1717
'summary' => __('Display a single number with trend indicator', __FILE__),
1818
'author' => 'Philipp Daun',
19-
'version' => '1.1.1',
19+
'version' => '1.3.0',
2020
]
2121
);
2222
}

DashboardPanelPageList.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DashboardPanelPageList extends DashboardPanel
1515
'title' => __('Dashboard Panel: PageList', __FILE__),
1616
'summary' => __('Display a ProcessPageList widget for any parent', __FILE__),
1717
'author' => 'Philipp Daun',
18-
'version' => '1.1.1',
18+
'version' => '1.3.0',
1919
]
2020
);
2121
}

DashboardPanelShortcuts.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class DashboardPanelShortcuts extends DashboardPanel
1919
'title' => __('Dashboard Panel: Shortcuts', __FILE__),
2020
'summary' => __('Display a list of shortcuts to admin pages', __FILE__),
2121
'author' => 'Philipp Daun',
22-
'version' => '1.1.1',
22+
'version' => '1.3.0',
2323
]
2424
);
2525
}

DashboardPanelTemplate.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class DashboardPanelTemplate extends DashboardPanel
1515
'title' => __('Dashboard Panel: Template', __FILE__),
1616
'summary' => __('Display the output of any file in the templates folder', __FILE__),
1717
'author' => 'Philipp Daun',
18-
'version' => '1.1.1',
18+
'version' => '1.3.0',
1919
]
2020
);
2121
}

0 commit comments

Comments
 (0)