| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-08-21 | Document NOICE_FALLBAK_OPENER. | ||
| 2016-08-21 | Support NOICE_FALLBAK_OPENER. | ||
| 2016-08-21 | Update README.md | ||
| 2016-08-21 | Doc update on NOICE_OPENER. | ||
| 2016-08-21 | Support NOICE_OPENER env variable. | ||
| 2016-08-21 | Update README.md | ||
| 2016-08-21 | Update man page. | ||
| 2016-08-21 | Update README. | ||
| 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 | Update README | ||
| 2016-08-20 | Remove config.h on clean. | ||
| 2016-08-20 | Fix compilation issues with -O3 optimization. | ||
| 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-08-20 | Merge remote-tracking branch 'upstream/master' | ||
| 2016-08-20 | Initial commit | ||
| 2016-03-11 | Bump to 0.5 | ||
| 2016-03-10 | Fix initscr() crash on NetBSD | ||
| NetBSD has its own curses implementation and initscr() does not terminate with an error if TERM is not set properly. Instead check the return value and exit if an initialization error occurs. | |||
| 2016-02-25 | Add command to cd back to HOME | ||
| Original patch written by Richard Hyde and taken from https://github.com/RichardHyde/noice | |||
| 2016-02-25 | Add command to toggle hide .dot files | ||
| Patch written by Richard Hyde and taken from https://github.com/RichardHyde/noice | |||
| 2016-02-19 | Style fix | ||
| 2016-02-19 | Fix grammar in manpage | ||
| 2016-02-19 | Fix strlcpy() size argument | ||
| It should be the size of the destination buffer, not the source. In this case, both src and dest have the same size. | |||
| 2016-02-19 | Update README - OSX works too | ||
| 2016-02-10 | Move mkpath() higher up so we don't need to declare it | ||
| 2016-02-10 | Move path[], oldpath[] and fltr[] inside browse() | ||
| 2016-02-10 | Minor style fix | ||
| 2016-02-10 | Rename global `n` to `ndents` | ||
| This is more descriptive for a global variable which can easily be shadowed. | |||
| 2016-02-10 | Use dents name directly like we do in other places | ||
| 2016-02-08 | Minor README update | ||
| 2016-02-08 | Minor style fix | ||
| 2016-02-08 | Nuke some newlines | ||
| 2016-02-08 | Remove some const bullshit | ||
| 2016-02-08 | Remove some more useless memory allocations | ||
| 2016-02-08 | Remove filter as you type mode | ||
| Nobody uses it and adds additional complexity. | |||
| 2016-02-08 | No need for cast in qsort callback | ||
| 2016-01-26 | Bump to 0.4 | ||
| 2016-01-13 | Year bump | ||
| 2016-01-07 | noice: No need to perform so many memory allocations | ||
| The code was quite fragile. As a first pass, use buffers of size PATH_MAX and LINE_MAX accordingly until we simplify the overall logic. | |||
| 2016-01-06 | Fix memory leak | ||
| 2016-01-06 | Avoid another allocation | ||
| 2016-01-06 | Avoid unneeded memory allocation in xdirname() | ||
| 2016-01-06 | sizeof(char) is always 1, no need to be explicit | ||
| 2016-01-06 | Print the resolved path for cwd | ||
| Avoids weird things like /etc/.. when displaying cwd. Also no need for cwd to be on the heap. | |||
| 2015-11-26 | Fix comment | ||
| 2015-11-26 | Add usage | ||
| 2015-11-26 | Don't use printerr() before curses has been initialized | ||
| 2015-11-26 | Don't name vars in prototypes | ||
| 2015-11-26 | Rename makepath() to mkpath() | ||
| 2015-11-26 | Only use the environment variable when it is not empty | ||
| 2015-11-26 | Be consistent in manpage | ||