My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CHANGELOG 5.4 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. nnn v1.6
  2. 2017-12-25
  3. What's in?
  4. - Shortcut `^O` to open file with custom application
  5. - Option `-b` to open bookmarks directly at start
  6. - Huge performance improvements around file name storing and handling
  7. - Several large static buffers removed or reduced
  8. - Several internal algorithms fine tuned for performance/resource usage
  9. -------------------------------------------------------------------------------
  10. nnn v1.5
  11. 2017-10-05
  12. What's in?
  13. - File and directory creation (`n`)
  14. - Env variable `NNN_NOWAIT` to unblock nnn when opening files (DE-specific)
  15. - Show current entry number in status bar
  16. - Support archive listing (`F`) and extraction (`Ctrl-X`) [using `atool`]
  17. - Show correct file size on i386 for large files (> 2GB)
  18. -------------------------------------------------------------------------------
  19. nnn v1.4
  20. 2017-09-04
  21. What's in?
  22. - Monitor directory changes
  23. - In-place file rename
  24. - Pin (`Ctrl-B`) a directory and visit (`Ctrl-V`) it anytime
  25. - Auto-completion scripts
  26. - Show volume capacity and free in help
  27. - Auto-fallback to light mode if too few columns (< 35)
  28. - PackageCore integration
  29. - Unsupported Function keys (they never work universally):
  30. - `F2` (rename), use `Ctrl-R`
  31. - `F5` (refresh), use `Ctrl-L`
  32. -------------------------------------------------------------------------------
  33. nnn v1.3
  34. 2017-07-26
  35. What's in?
  36. - Show directories in custom color (default: enabled in blue)
  37. - Option `-e` to use exiftool instead of mediainfo
  38. - Fixed #34: nftw(3) broken with too many open descriptors
  39. - More concise help screen
  40. -------------------------------------------------------------------------------
  41. nnn v1.2
  42. 2017-06-29
  43. What's in?
  44. - Use the desktop opener (xdg-open on Linux, open(1) on OS X) to open files
  45. - Option `NNN_USE_EDITOR` to open text files in EDITOR (fallback vi)
  46. - Bookmark support (maximum 10, key `b`)
  47. - *Navigate-as-you-type* mode (key `Insert` or option `-i`)
  48. - Subtree search: gnome-search-tool, fallback catfish (key `^/`) (customizable)
  49. - Show current directory content size and file count in disk usage mode
  50. - Add detail view mode as default, use `-l` to start in light mode
  51. - Shortcuts `F2` and `^L` to refresh and unfilter
  52. Note: if filter is empty, `Enter` *opens* the currently selected file now
  53. - Help screen shows bookmarks and configuration
  54. - Show a message when calculating disk usage
  55. - Show the spawned shell level
  56. - Linux only: use vlock as the locker on timeout (set using `NNN_IDLE_TIMEOUT`)
  57. -------------------------------------------------------------------------------
  58. nnn v1.1
  59. 2017-05-12
  60. News
  61. - Introducing nlay - a highly customizable bash script to handle media type
  62. - nnn is on [Homebrew](http://braumeister.org/formula/nnn) now
  63. - RPM packages for CentOS 7 and Fedora 24 generated on release
  64. What's in?
  65. - *Search-as-you-type*
  66. - Unicode support
  67. - Option `-S` to start in disk usage analyzer mode
  68. - Show media information (using mediainfo)
  69. - Use readline at change directory prompt
  70. - Jump to prev directories using `cd .....` (with `.` as PWD)
  71. - Jump to initial directory using `&`
  72. - Show help, mediainfo and file info in PAGER
  73. - Several optimizations
  74. -------------------------------------------------------------------------------
  75. nnn v1.0
  76. 2017-04-13
  77. Modifications
  78. - Behaviour and navigation
  79. - Detail view (default: disabled) with:
  80. - file type (directory, regular, symlink etc.)
  81. - modification time
  82. - human-readable file size
  83. - current item in reverse video
  84. - number of items in current directory
  85. - full name of currently selected file in 'bar'
  86. - Show details of the currently selected file (stat, file)
  87. - Disk usage analyzer mode (within the same fs, doesn't follow symlinks)
  88. - Directories first (even with sorting)
  89. - Sort numeric names in numeric order
  90. - Case-insensitive alphabetic content listing instead of upper case first
  91. - Key `-` to jump to last visited directory
  92. - Roll over at the first and last entries of a directory (with Up/Down keys)
  93. - Removed navigation restriction with relative paths (and let permissions handle it)
  94. - Sort entries by file size (largest to smallest)
  95. - Shortcut to invoke file name copier (set using environment variable `NNN_COPIER`)
  96. - File association
  97. - Set `NNN_OPENER` to let a desktop opener handle it all. E.g.:
  98. export NNN_OPENER=xdg-open
  99. export NNN_OPENER=gnome-open
  100. export NNN_OPENER=gvfs-open
  101. - Selective file associations (ignored if `NNN_OPENER` is set):
  102. - Associate plain text files (determined using file) with vi
  103. - Associate common audio and video mimes with mpv
  104. - Associate PDF files with [zathura](https://pwmt.org/projects/zathura/)
  105. - Removed `less` as default file opener (there is no universal standalone opener utility)
  106. - You can customize further (see [how to change file associations](#change-file-associations))
  107. - `NNN_FALLBACK_OPENER` is the last line of defense:
  108. - If the executable in static file association is missing
  109. - If a file type was not handled in static file association
  110. - This may be the best option to set your desktop opener to
  111. - To enable the desktop file manager key, set `NNN_DE_FILE_MANAGER`. E.g.:
  112. export NNN_DE_FILE_MANAGER=thunar
  113. - Optimization
  114. - All redundant buffer removal
  115. - All frequently used local chunks now static
  116. - Removed some redundant string allocation and manipulation
  117. - Simplified some roundabout procedures
  118. - Compiler warnings fixed
  119. - strip the final binary
  120. -------------------------------------------------------------------------------