Merge lp:~vthompson/ubuntu-filemanager-app/1205157-filemanager-portion into lp:ubuntu-filemanager-app

Proposed by Victor Thompson
Status: Superseded
Proposed branch: lp:~vthompson/ubuntu-filemanager-app/1205157-filemanager-portion
Merge into: lp:ubuntu-filemanager-app
Prerequisite: lp:~vthompson/ubuntu-filemanager-app/1205157-plugin-portion
Diff against target: 29 lines (+3/-3)
2 files modified
FileDetailsPopover.qml (+2/-2)
FolderListPage.qml (+1/-1)
To merge this branch: bzr merge lp:~vthompson/ubuntu-filemanager-app/1205157-filemanager-portion
Reviewer Review Type Date Requested Status
Michael Spencer Approve
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Review via email: mp+177085@code.launchpad.net

This proposal has been superseded by a proposal from 2013-07-26.

Commit message

Display the last accessed time (atime) instead of last inode change time (ctime)

Description of the change

Display the last accessed time (atime) instead of last inode change time (ctime)

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Michael Spencer (ibelieve) wrote :

Nice, thanks for fixing this.

review: Approve

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'FileDetailsPopover.qml'
2--- FileDetailsPopover.qml 2013-07-12 02:15:04 +0000
3+++ FileDetailsPopover.qml 2013-07-26 04:13:34 +0000
4@@ -104,10 +104,10 @@
5 }
6
7 Label {
8- text: i18n.tr("Created:")
9+ text: i18n.tr("Accessed:")
10 }
11 Label {
12- text: dateTimeFormat(model.creationDate)
13+ text: dateTimeFormat(model.accessedDate)
14 }
15
16 Label {
17
18=== modified file 'FolderListPage.qml'
19--- FolderListPage.qml 2013-07-18 21:57:06 +0000
20+++ FolderListPage.qml 2013-07-26 04:13:34 +0000
21@@ -182,7 +182,7 @@
22 property string fileSize: (folderListView.count === 1
23 ? i18n.tr("1 file")
24 : i18n.tr("%1 files").arg(folderListView.count))
25- property date creationDate: pageModel.pathCreatedDate
26+ property date accessedDate: pageModel.pathAccessedDate
27 property date modifiedDate: pageModel.pathModifiedDate
28 property bool isWritable: pageModel.pathIsWritable
29 property bool isReadable: true

Subscribers

People subscribed via source and target branches