| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2020-12-08 | build: add git based version information back | Marc André Tanner | 1 | -1/+1 | |
| 2020-12-08 | Set version to 0.7 | Marc André Tanner | 1 | -1/+1 | |
| 2020-10-10 | text: move higher level utility functions to separate file | Marc André Tanner | 1 | -0/+1 | |
| The moved functions do not need access to internals of text.c, but instead use the public interfaces. Splitting them out should facilitate experimentation with different core text management data structures. | |||||
| 2020-10-10 | text: move generic iterator functionality to separate file | Marc André Tanner | 1 | -0/+1 | |
| 2020-10-10 | text: move I/O related code to separate file | Marc André Tanner | 1 | -0/+1 | |
| This groups all I/O related code together to make it reusable in different core text data structure implementations. | |||||
| 2020-10-10 | build: list source files on separate lines | Marc André Tanner | 1 | -4/+22 | |
| 2020-07-11 | build: mark distclean and testclean targets as PHONY | Marc André Tanner | 1 | -1/+1 | |
| 2020-07-07 | Makefile: add testclean target | Paride Legovini | 1 | -1/+5 | |
| The target calls `make clean` in the test submodule, if present. The target is called by the `distclean` target. | |||||
| 2020-07-07 | Makefile: add distclean target | Paride Legovini | 1 | -1/+5 | |
| 2020-06-07 | build: add git based version information back | Marc André Tanner | 1 | -1/+1 | |
| 2020-06-07 | build: set version to 0.6 | Marc André Tanner | 1 | -1/+1 | |
| 2020-02-26 | build: provide install-strip make target | Marc André Tanner | 1 | -5/+7 | |
| Do not strip executables by default. Fix #811 | |||||
| 2020-02-03 | build: properly kill docker container | Christian Hesse | 1 | -3/+6 | |
| We keep a running docker container in the background. If the build process fails this becomes dangling. Make sure the container is properly killed. | |||||
| 2020-02-03 | build: explicitly specify working directory for docker | Marc André Tanner | 1 | -2/+2 | |
| Otherwise the config.mk file generated by ./configure does not end up in the source tree and has no effect. Our Makefile does currently not support out of tree builds. Previously this worked because the WORKDIR within the Dockerfile was set to the vis source (and build) directory. | |||||
| 2020-01-30 | build: explicitly list configure options for docker builds | Marc André Tanner | 1 | -1/+4 | |
| This should catch Alpine package changes such as the one fixed in 0ba252f08e9ef7b62c442eb91b36822d654f5b04. | |||||
| 2020-01-30 | build: allow to replace docker | Christian Hesse | 1 | -10/+11 | |
| This allows to build with docker-compatible container engine: make DOCKER=podman docker | |||||
| 2020-01-30 | build: add target docker-clean | Christian Hesse | 1 | -1/+4 | |
| This removes the docker image and volume `vis` and thus purges everything we added in docker. | |||||
| 2020-01-30 | build: clean up docker build | Christian Hesse | 1 | -5/+4 | |
| 2020-01-28 | build: fix generation of HTML man pages | Marc André Tanner | 1 | -1/+1 | |
| Starting with mandoc version 1.14.2 the xhtml format is no longer an alias for html. | |||||
| 2020-01-16 | build: force enable acl for docker builds | Christian Hesse | 1 | -1/+1 | |
| This makes sure the feature is enabled as expected. | |||||
| 2018-03-25 | build: add git based version information back | Marc André Tanner | 1 | -1/+1 | |
| 2018-03-25 | build: set version to 0.5 | Marc André Tanner | 1 | -1/+1 | |
| 2018-03-19 | build: build standalone binary against latest Alpine packages | Marc André Tanner | 1 | -1/+2 | |
| 2018-03-14 | build: try to use POSIX tools/options for vis-single target | Marc André Tanner | 1 | -2/+4 | |
| 2017-07-23 | build: add git based version information back | Marc André Tanner | 1 | -1/+1 | |
| 2017-07-23 | build: set version to 0.4 | Marc André Tanner | 1 | -1/+1 | |
| 2017-07-10 | vis: implement jump list in terms of marks | Marc André Tanner | 1 | -1/+1 | |
| 2017-07-08 | vis: cleanup marks implementation | Marc André Tanner | 1 | -1/+1 | |
| We now use ' to refer to marks. Mark a is set using 'am and restored using 'aM while this is slightly harder to type than ma and 'a it is consistent with register usage for yank/put and allows a default mark to be used which is handy for quick selection manipulation primitives. | |||||
| 2017-07-04 | Remove conditional initialization from Makefile | George Brown | 1 | -7/+0 | |
| No longer needed after standalone build target was removed. | |||||
| 2017-06-03 | build: port self-contained executable to libuntar | Marc André Tanner | 1 | -1/+1 | |
| It is currently not packaged by Alpine which is why we are building it during docker image creation. Also cleanup vis-single. | |||||
| 2017-06-02 | port self-contained executable to libtar | Christian Hesse | 1 | -1/+1 | |
| libarchive is nice, but adds a lot of bloat we carry around without using it. So port to libtar. | |||||
| 2017-06-01 | build: produce reproducible self contained executable | Christian Hesse | 1 | -3/+3 | |
| Giving tar the parameter '--sort=name' sorts direcory entries, but keeps single files as-is. So instead sort the list retrieved by find. Also set the file mode... Works for me. [TM] :D | |||||
| 2017-06-01 | Merge branch 'strip' of https://github.com/eworm-de/vis | Marc André Tanner | 1 | -0/+1 | |
| 2017-06-01 | build: strip vis-single by default | Christian Hesse | 1 | -0/+1 | |
| 2017-06-01 | build: use single threaded compression for reproducible builds | Christian Hesse | 1 | -1/+1 | |
| 2017-06-01 | build: inject the version into docker image | Christian Hesse | 1 | -0/+1 | |
| 2017-05-31 | build: try to make docker build reproducible | Marc André Tanner | 1 | -1/+2 | |
| 2017-05-31 | build: add a make docker target | Marc André Tanner | 1 | -1/+11 | |
| This should produce a self-contained vis binary for x86_64 Linux. | |||||
| 2017-05-31 | build: cleanup self contained executable | Marc André Tanner | 1 | -8/+8 | |
| Set $PATH and $TERMINFO_DIRS environment variables, use chdir(2) to simplify extraction logic, improve error handling. | |||||
| 2017-05-31 | build: allow to build self-contained executable | Christian Hesse | 1 | -1/+15 | |
| 2017-04-20 | vis: start cleaning up register related code | Marc André Tanner | 1 | -2/+2 | |
| Now that register.h is no longer used by view.h we can move the struct and function declarations to vis-core.h. | |||||
| 2017-04-14 | build: install miscellaneous documentation | David B. Lamkins | 1 | -0/+13 | |
| 2017-04-11 | build: tweak CFLAGS for profiling target | Marc André Tanner | 1 | -1/+1 | |
| 2017-04-09 | text: add mem{r,}chr(3) based byte search functions | Marc André Tanner | 1 | -1/+4 | |
| These are generally implemented efficiently in libc. While memrchr(3) is non-standard, it is a common extension. If it is not available, we use a simple C implementation from musl. | |||||
| 2017-03-27 | build: add git based version information back | Marc André Tanner | 1 | -1/+1 | |
| 2017-03-25 | build: set version to 0.3 | Marc André Tanner | 1 | -1/+1 | |
| 2017-03-14 | Add experimental raw vt100 UI backend | Marc André Tanner | 1 | -0/+2 | |
| The intention of this is not to slowly reimplement curses but to provide a minimal working terminal UI backend which can also be used for debugging, fuzzing and in environments where curses is not available. Currently no attempt is made to optimize terminal output. The amount of flickering will depend on the smartness of your terminal emulator. | |||||
| 2017-03-14 | Restructure display code | Marc André Tanner | 1 | -1/+1 | |
| Use pull instead of push based model for display code. Previously view.c was calling into the ui frontend code, with the new scheme this switches around: the necessary data is fetched by the ui as necessary. The UI independent display code is moved out of view.c/ui-curses.c into vis.c. The cell styles are now directly embedded into the Cell struct. New UI styles are introduced for: - status bar (focused / non-focused) - info message - window separator - EOF symbol You will have to update your color themes. The terminal output code is further abstracted into a generic ui-terminal.c part which keeps track of the whole in-memory cell matrix and #includes ui-terminal-curses.c for the actual terminal output. This architecture currently assumes that there are no overlapping windows. It will also allow non-curses based terminal user interfaces. | |||||
| 2017-03-05 | lua: fix more luacheck warnings | Marc André Tanner | 1 | -1/+1 | |
| 2017-03-03 | build: add luacheck make target | Marc André Tanner | 1 | -1/+4 | |
