Skip to content

Commit d9cfcc7

Browse files
committed
Release v1.5.0
1 parent 6a80edc commit d9cfcc7

12 files changed

+13
-13
lines changed

Dashboard.module

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use function ProcessWire\wireIconMarkup;
1313
* @author Philipp Daun <[email protected]>
1414
* @license GPL-3.0
1515
*
16-
* @version 1.4.2
16+
* @version 1.5.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.4.2',
34+
'version' => '1.5.0',
3535
'icon' => 'compass',
3636
'permission' => 'dashboard-view',
3737
'permissions' => [

DashboardPanelAddNew.module

+1-1
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.4.2',
22+
'version' => '1.5.0',
2323
]
2424
);
2525
}

DashboardPanelChart.module

+1-1
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.4.2',
18+
'version' => '1.5.0',
1919
]
2020
);
2121
}

DashboardPanelCollection.module

+1-1
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.4.2',
21+
'version' => '1.5.0',
2222
]
2323
);
2424
}

DashboardPanelNotice.module

+1-1
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.4.2',
19+
'version' => '1.5.0',
2020
]
2121
);
2222
}

DashboardPanelNumber.module

+1-1
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.4.2',
19+
'version' => '1.5.0',
2020
]
2121
);
2222
}

DashboardPanelPageList.module

+1-1
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.4.2',
18+
'version' => '1.5.0',
1919
]
2020
);
2121
}

DashboardPanelShortcuts.module

+1-1
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.4.2',
22+
'version' => '1.5.0',
2323
]
2424
);
2525
}

DashboardPanelTemplate.module

+1-1
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.4.2',
18+
'version' => '1.5.0',
1919
]
2020
);
2121
}

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.2
1+
1.5.0

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "processwire-dashboard",
3-
"version": "1.4.2",
3+
"version": "1.5.0",
44
"description": "Configurable dashboard for ProcessWire's admin interface",
55
"scripts": {
66
"dev": "parcel src/*.js src/*.css --dist-dir . --no-source-maps --no-hmr",

0 commit comments

Comments
 (0)