]> Sergey Matveev's repositories - nnn.git/blob - CHANGELOG
Update performance figures
[nnn.git] / CHANGELOG
1 nnn v1.1
2 2017-05-12
3
4 News
5 - Introducing nlay - a highly customizable bash script to handle media type
6 - nnn is on [Homebrew](http://braumeister.org/formula/nnn) now
7 - RPM packages for CentOS 7 and Fedora 24 generated on release
8
9 What's in?
10 - *Search-as-you-type*
11 - Unicode support
12 - Option `-S` to start in disk usage analyzer mode
13 - Show media information (using mediainfo)
14 - Use readline at change directory prompt
15 - Jump to prev directories using `cd .....` (with `.` as PWD)
16 - Jump to initial directory using `&`
17 - Show help, mediainfo and file info in PAGER
18 - Several optimizations
19
20 -------------------------------------------------------------------------------
21
22 nnn v1.0
23 2017-04-13
24
25 Modifications
26 - Behaviour and navigation
27   - Detail view (default: disabled) with:
28     - file type (directory, regular, symlink etc.)
29     - modification time
30     - human-readable file size
31     - current item in reverse video
32     - number of items in current directory
33     - full name of currently selected file in 'bar'
34   - Show details of the currently selected file (stat, file)
35   - Disk usage analyzer mode (within the same fs, doesn't follow symlinks)
36   - Directories first (even with sorting)
37   - Sort numeric names in numeric order
38   - Case-insensitive alphabetic content listing instead of upper case first
39   - Key `-` to jump to last visited directory
40   - Roll over at the first and last entries of a directory (with Up/Down keys)
41   - Removed navigation restriction with relative paths (and let permissions handle it)
42   - Sort entries by file size (largest to smallest)
43   - Shortcut to invoke file name copier (set using environment variable `NNN_COPIER`)
44 - File association
45   - Set `NNN_OPENER` to let a desktop opener handle it all. E.g.:
46         export NNN_OPENER=xdg-open
47         export NNN_OPENER=gnome-open
48         export NNN_OPENER=gvfs-open
49   - Selective file associations (ignored if `NNN_OPENER` is set):
50     - Associate plain text files (determined using file) with vi
51     - Associate common audio and video mimes with mpv
52     - Associate PDF files with [zathura](https://pwmt.org/projects/zathura/)
53     - Removed `less` as default file opener (there is no universal standalone opener utility)
54     - You can customize further (see [how to change file associations](#change-file-associations))
55   - `NNN_FALLBACK_OPENER` is the last line of defense:
56     - If the executable in static file association is missing
57     - If a file type was not handled in static file association
58     - This may be the best option to set your desktop opener to
59   - To enable the desktop file manager key, set `NNN_DE_FILE_MANAGER`. E.g.:
60         export NNN_DE_FILE_MANAGER=thunar
61 - Optimization
62   - All redundant buffer removal
63   - All frequently used local chunks now static
64   - Removed some redundant string allocation and manipulation
65   - Simplified some roundabout procedures
66   - Compiler warnings fixed
67   - strip the final binary
68
69 -------------------------------------------------------------------------------