1. 02 3月, 2015 1 次提交
  2. 26 2月, 2015 3 次提交
  3. 25 2月, 2015 3 次提交
  4. 24 2月, 2015 1 次提交
  5. 23 2月, 2015 3 次提交
  6. 22 2月, 2015 5 次提交
    • N
      Rename attr to xattr · 3d587c45
      nwin 提交于
      3d587c45
    • N
      Fix other platforms than macos. · 227ddc9a
      nwin 提交于
      227ddc9a
    • N
      Implement display of extended attributes · 48b61231
      nwin 提交于
      48b61231
    • B
      Add sort-by-date options · a4e17193
      Ben S 提交于
      These were completely missing because I forgot about them... I added sorting functionality before I added date functionality, but it turns out I didn't even need the datetime library to do this!
      
      However, this implementation feels incomplete. If you sort by the accessed date, it still displays the modified date, so the dates still look out of order. If I were to change the date column for the user, though, then there would still be no header to signify that the column has changed. I'm not sure how to proceed with this, but this is still missing functionality, so in it goes.
      a4e17193
    • B
      Mandate --recurse with --tree · f8768e7c
      Ben S 提交于
      Fixes #7.
      f8768e7c
  7. 11 2月, 2015 1 次提交
    • B
      Format file size in bytes with the user's locale · 21ac16f8
      Ben S 提交于
      Use the `locale` crate as a dependency to read in the set
      thousands-separator character, and pass this to the file size column,
      which uses it to add the separators in.
      
      en_GB uses ","
      fr_FR uses "" and just displays the numbers in one go.
      21ac16f8
  8. 10 2月, 2015 7 次提交
  9. 08 2月, 2015 1 次提交
  10. 05 2月, 2015 2 次提交
    • B
      Upgrade to latest Rust · 055854d8
      Ben S 提交于
      - std::os -> std::env
      055854d8
    • B
      Refactor the code after tree view changes · 42ae7b3d
      Ben S 提交于
      - Turn the views and main program loop into structs, rather than just as one gigantic function
      - Separate views into their own files
      
      The addition of the git column and the tree view meant that a lot of functions now just took extra arguments that didn't seem to fit. For example, it didn't really work to have only one 'view' method that printed out everything, as the different view options now all take different parameters.
      42ae7b3d
  11. 04 2月, 2015 5 次提交
  12. 03 2月, 2015 2 次提交
    • B
      Make filename not a column · 827a1e11
      Ben S 提交于
      FileName was always a special-cased column, as it was assumed to be the last column in the output. Now, it's explicitly marked as such. This allows the hash marks to be placed before the filename, rather than at the start of the line.
      827a1e11
    • B
      Initial tree implementation · 5099b3f1
      Ben S 提交于
      There's still a lot to do, but this is actually *something*. The tree hierarchy is displayed using hashes at the start of a line. I want to have it just before the filename, but this will need some changes to the way that columns are handled.
      5099b3f1
  13. 01 2月, 2015 3 次提交
  14. 29 1月, 2015 1 次提交
    • B
      Change the way columns are created · b0cdd17b
      Ben S 提交于
      You can now have different columns per directory. So now, the Git column only appears when there's a Git repository in the current directory.
      b0cdd17b
  15. 27 1月, 2015 2 次提交