diff --git a/CHANGELOG.md b/CHANGELOG.md index 286d2e9..0a95c44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 1.0.4 - 2018-12-04 + +## Fixed +- Timestamp in Audit index is now localized + ## 1.0.3 - 2018-12-04 ## Added -- Added setting for pruning old records on admin requests +- Added setting for pruning old records on admin requests ## 1.0.2 - 2018-12-03 diff --git a/composer.json b/composer.json index 071d024..13ddae3 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "superbig/craft-audit", "description": "Log adding/updating/deleting of elements", "type": "craft-plugin", - "version": "1.0.3", + "version": "1.0.4", "keywords": [ "craft", "cms", diff --git a/src/templates/index.twig b/src/templates/index.twig index 2d16f6d..c3f10f5 100644 --- a/src/templates/index.twig +++ b/src/templates/index.twig @@ -56,7 +56,7 @@ {{ log.getElementLink() }} {{ log.getUserLink() }} {{ log.ip }} - {{ log.dateCreated }} + {{ "#{log.dateCreated|date('short')} #{log.dateCreated|time('short')}" }}