| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | ||
| 2015-11-20 | Properly handle empty filters | ||
| 2015-11-20 | Make room for null-terminator | ||
| 2015-11-20 | Simplify readln() | ||
| Use getnstr() and be done with it. It will even beep now! | |||
| 2015-11-14 | Revert "Run screensaver after a period of idleness" | ||
| This reverts commit 1e18b85e56d98ca2daeb7adc587c28f5d653a01f. Revert until remaining issues are fixed. The filter search expires after 1 second of inactivity without the revert. | |||
| 2015-11-03 | Ignore SIGINT to allow returning back to noice when we kill the screensaver | ||
| Use 'q' to quit. | |||
| 2015-11-02 | Run screensaver after a period of idleness | ||
| 2015-08-19 | Add .mov to config.h | ||