1. 23 2月, 2015 15 次提交
  2. 22 2月, 2015 8 次提交
    • B
      Merge pull request #10 from coyotebush/unicode-grid · 53387122
      Ben S 提交于
      Use file_name_width in grid
      53387122
    • C
      Use file_name_width in grid · 43e80619
      Corey Ford 提交于
      Filenames with characters that need multiple bytes in UTF-8, and/or
      control characters like combining diacritics, would break the grid.
      `StrExt::width` seems to do the right thing, and there's conveniently a
      function here (which was otherwise unused) to call that.
      43e80619
    • 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
      Merge pull request #6 from mikefaille/master · d73b0a8a
      Ben S 提交于
      FIX bitflags depedency
      d73b0a8a
    • B
      Mandate --recurse with --tree · f8768e7c
      Ben S 提交于
      Fixes #7.
      f8768e7c
    • M
      FIX bitflags depedency · 2701c20a
      Michael Faille 提交于
      2701c20a
    • B
      Code cleanups in filetype detection · 363d52db
      Ben S 提交于
      363d52db
    • B
      Add link to README · 16346731
      Ben S 提交于
      16346731
  3. 21 2月, 2015 2 次提交
    • B
      Upgrade to latest Rust · b2ed264b
      Ben S 提交于
      - Feature flags changes (old_io, old_path)
      - Slice syntax changes ([] -> [..])
      b2ed264b
    • B
      Versions bump · e15f72f0
      Ben S 提交于
      This compiles, but with manymany warnings.
      e15f72f0
  4. 17 2月, 2015 1 次提交
  5. 14 2月, 2015 2 次提交
  6. 13 2月, 2015 2 次提交
  7. 11 2月, 2015 4 次提交
    • B
      Translate month names into the user's locale · 2906b867
      Ben S 提交于
      This has been mostly done with changes in the datetime crate's suddenly
      supporting locales.
      
      It's still important that the user's locale is touched only once and
      cached from that point on, so a struct in output::details has been made
      public, along with that module. This will change later as that object
      gains more and more uses thoughout the codes.
      2906b867
    • B
      Use locale-defined decimal separator · e39a20a5
      Ben S 提交于
      Also, fix the broken tests by just using the default locale at test
      time.
      e39a20a5
    • B
      Add thousands seps to links and blocks columns · 84b18e55
      Ben S 提交于
      84b18e55
    • 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 6 次提交