Release 0.2.1, Show Date in title

This commit is contained in:
Synox 2018-07-01 23:29:30 +02:00
parent 9af257ca45
commit d86adfc950
2 changed files with 5 additions and 2 deletions

View file

@ -5,12 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
## [Unreleased]
## [0.2.1] - 2018-07-01
### Breaking Changes
- added $config['locale']. See config.sample.php - you have to set it.
### Changed
- new layout & design with more whitespace and more explanations.
- Show dates in local and relative format.
## [0.2.0] - 2018-06-16

View file

@ -192,7 +192,8 @@ function niceDate($date) {
<div class="media-body">
<h6 class="list-group-item-heading"><?php echo filter_var($email->fromName, FILTER_SANITIZE_SPECIAL_CHARS) ?>
<span class="text-muted"><?php echo filter_var($email->fromAddress, FILTER_SANITIZE_SPECIAL_CHARS) ?></span>
<small class="float-right"><?php echo niceDate($email->date) ?></small>
<small class="float-right"
title="<?php echo $email->date ?>"><?php echo niceDate($email->date) ?></small>
</h6>
<p class="list-group-item-text text-truncate" style="width: 75%">
<?php echo filter_var($email->subject, FILTER_SANITIZE_SPECIAL_CHARS); ?>