Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-29 | Prepare for release v1.2 | ||
2017-06-20 | An undocumented debug mode | ||
1. The debug file is located at /tmp/nnn_debug. 2. Debug mode is completely disabled by default. The debug binary `nnndbg` can be built by running `make debug`. | |||
2017-05-13 | Make Makefile generic | ||
2017-05-13 | pkg-config for ncurses (#25) | ||
2017-05-11 | Prepare for release v1.1 | ||
2017-04-23 | nlay - a highly customizable file handler | ||
2017-04-20 | Use readline() at chdir prompt | ||
With the features the readline library provides it would be too naive to ignore. We break out of the curses mode into the prompt and get back in. This change introduces dependency on libncurses. | |||
2017-04-16 | Makefile: use libncurses instead of libncursesw on Darwin | ||
macOS 10.12.4 and many earlier versions have libncurses 5.4 with wide character support, but not libncursesw. | |||
2017-04-16 | Use libncursesw for internationalization | ||
Update README on dependencies | |||
2017-04-13 | Move man to $PREFIX/share/man | ||
2017-04-13 | Prepare for release v1.0 | ||
2017-04-11 | Maximize rlimit, switch to detail view in du mode | ||
2017-04-11 | Fix #4. | ||
2017-04-04 | Fix warnings. Harden compilation. | ||
2017-04-03 | Allow custom CFLAGS and CPPFLAGS in Makefile | ||
This is consistent with the fact that custom LDFLAGS are already allowed, and for once, it makes warning options easier to control. Also use automatic variables $@ and $^ consistently. | |||
2017-04-02 | Remove redundant stuff | ||
1. Have a faster copy of strlcpy() 2. Remove redundant legacy files 3. Fix an issue with NULL check on array name | |||
2017-04-02 | Revert non-portable optimization | ||
2017-04-01 | Optimizations | ||
2017-04-01 | Remove sh as script opener, use vi | ||
2017-03-30 | Rename project to nnn (Noice is Not Noice) | ||
2017-03-30 | strip binary | ||
2016-10-05 | Merge remote-tracking branch 'upstream/master' | ||
2016-08-24 | Bump to 0.6 | ||
2016-08-22 | Accept user-defined LDFLAGS in Makefile | ||
Diff by Ypnose | |||
2016-08-21 | Remove libmagic, use file command. | ||
The magic.mgc file gets created in the local directory, opening the global file throws unwanted messages. So we are using the o/p of the file command to determine if the file is a plain text file. | |||
2016-08-20 | Remove config.h on clean. | ||
2016-08-20 | Modify file type handling. | ||
Use mpv, fmedia, zathura. Invoke libmagic to identify text files and open with vim. Use xdg-open for unhandled mimes. | |||
2016-03-11 | Bump to 0.5 | ||
2016-01-26 | Bump to 0.4 | ||
2015-11-20 | Bump to 0.3 | ||
2015-06-04 | Make config independent to avoid accidental overwrites | ||
2015-03-12 | Bump to 0.2 | ||
2014-11-14 | First release | ||
2014-11-14 | No need for +=, also favors portability | ||
2014-11-14 | Build with -lcurses by default to be more generic | ||
2014-11-14 | Use a var for dist files and remove queue.h | ||
2014-11-14 | Add dist target | ||
2014-11-14 | Replace asprintf() with strlcpy() and strlcat() | ||
2014-10-27 | Ensure manprefix exists | ||
2014-10-23 | The queue header is not needed for now | ||
2014-10-22 | Just let the commands show up | ||
2014-10-22 | Add manpage | ||
2014-10-21 | Still use some of the implicit magic | ||
2014-10-21 | Add install/uninstall targets | ||
2014-10-21 | And CPPFLAGS | ||
2014-10-21 | Use CFLAGS too | ||
2014-10-21 | Force rebuild of noice.o if queue.h is modified | ||
2014-10-21 | Add config.def.h | ||
2014-10-21 | Add strlcpy() | ||
2014-10-08 | Change string copies to use strlcpy(3) | ||