Include changelog as markdown files and show it in the about dialog

This commit is contained in:
Bernd Bestel
2019-03-09 15:54:16 +01:00
parent 8fec262184
commit 6de4b120b3
52 changed files with 321 additions and 25 deletions

View File

@@ -34,7 +34,8 @@ class SystemController extends BaseController
public function About(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args)
{
return $this->AppContainer->view->render($response, 'about', [
'system_info' => $this->ApplicationService->GetSystemInfo()
'system_info' => $this->ApplicationService->GetSystemInfo(),
'changelog' => $this->ApplicationService->GetChangelog()
]);
}
}