Release 0.2.1, Show Date in title
This commit is contained in:
parent
9af257ca45
commit
d86adfc950
|
@ -5,12 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.2.1] - 2018-07-01
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
- added $config['locale']. See config.sample.php - you have to set it.
|
- added $config['locale']. See config.sample.php - you have to set it.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- new layout & design with more whitespace and more explanations.
|
- new layout & design with more whitespace and more explanations.
|
||||||
|
- Show dates in local and relative format.
|
||||||
|
|
||||||
## [0.2.0] - 2018-06-16
|
## [0.2.0] - 2018-06-16
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,8 @@ function niceDate($date) {
|
||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<h6 class="list-group-item-heading"><?php echo filter_var($email->fromName, FILTER_SANITIZE_SPECIAL_CHARS) ?>
|
<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>
|
<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>
|
</h6>
|
||||||
<p class="list-group-item-text text-truncate" style="width: 75%">
|
<p class="list-group-item-text text-truncate" style="width: 75%">
|
||||||
<?php echo filter_var($email->subject, FILTER_SANITIZE_SPECIAL_CHARS); ?>
|
<?php echo filter_var($email->subject, FILTER_SANITIZE_SPECIAL_CHARS); ?>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user