| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | ||
| 2015-11-26 | Minor fixes for manpage | ||
| 2015-11-26 | Fix instructions for Solaris 9 | ||
| 2015-11-26 | Minor grammar fix in README | ||
| 2015-11-26 | Declare var at top of block | ||
| 2015-11-26 | Support commands specified by environment variables | ||
| Specifying commands by name in config.h means that every time one switches ones editor (for example), one has to modify every config.h file referencing that editor and then recompile every corresponding program. This change adds a string `env` for specifying an environment variable to `struct key` and uses it to optionally specify the command to run on SEL_{RUN,RUNARG}. The `run` string is used as a fallback when the environment variable has not been specified or is not set. It also updates `config.def.h` to demonstrate this new capability. | |||
| 2015-11-20 | No need for strlen() | ||
| Thanks Hiltjo! | |||
| 2015-11-20 | Bump to 0.3 | ||
| 2015-11-20 | The 2f30 lists were taken down so update README | ||
| 2015-11-20 | Add license pointer | ||
| 2015-11-20 | Restore screensaver mode | ||
| Disable timeout when in filter or type mode. | |||
| 2015-11-20 | Sync strlcpy/strlcat from OpenBSD | ||
| 2015-11-20 | Use wgetnstr() instead of getnstr() because IRIX lacks the latter | ||