summary refs log tree commit diff
path: root/etc/psf (follow)
Commit message (Collapse)AuthorAge
* Fix some symbols in sans8x16June McEnroe2019-01-16
|
* Add sans8x16.psfJune McEnroe2019-01-15
| | | | The symbols are still really bad...
* Add sans6x12June McEnroe2018-10-03
|
* Fix ≈ glyph of sans6x8June McEnroe2018-10-03
|
* Fill E0 through FE of sans6x10June McEnroe2018-10-03
|
* Fill 03 through 1F of sans6x10June McEnroe2018-10-03
|
* Fix ¼ glyph of sans6x8June McEnroe2018-10-03
|
* Fill A6 through AF of sans6x10June McEnroe2018-10-03
|
* Squish Ñ in sans6x10 consistentlyJune McEnroe2018-09-29
|
* Add box drawing glyphs to sans6x10June McEnroe2018-09-29
|
* Tweak sans6x8 shading blocksJune McEnroe2018-09-29
|
* Fill 7F through A5 of sans6x10June McEnroe2018-09-29
|
* Add sans6x10 basic glyphsJune McEnroe2018-09-28
|
* Make sans6x8 double quote narrowerJune McEnroe2018-09-28
|
* Add greek glyphs to sans6x8June McEnroe2018-09-28
|
* Add png target in etc/psfJune McEnroe2018-09-28
|
* Add sans6x8 PSF2 fontJune McEnroe2018-09-27
Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer