diff --git a/system/admin/views/update.html.php b/system/admin/views/update.html.php index 194f750..5a0673e 100644 --- a/system/admin/views/update.html.php +++ b/system/admin/views/update.html.php @@ -11,9 +11,14 @@ $updater = new HubUpdater(array( if ($updater->able()) { $info = $updater->getNewestInfo(); - echo '

Update Available

'; - echo '

Update to ' . $info['tag_name'] . '

'; + echo '

Update Available

'; + echo '

'. $info['name'] .'

'; + echo '

Version: '. $info['tag_name'] .'

'; + echo '

Release Notes

'; + echo '
'. $info['body'] .'
'; + echo '

Important: Please always backup your files before upgrading to newer version.

'; + echo '

Update to ' . $info['tag_name'] . ' now

'; } else { echo '

No Available Update

'; - echo '

You are using the latest HTMLy version.

'; + echo '

You are using the latest HTMLy version.

'; } \ No newline at end of file