Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-04-20 | Merge remote-tracking branch 'upstream/master' | Petter Rodhelind | 19 | -23/+75 | |
2018-03-27 | libdraw: fix error in the previous commit | Xiao-Yong Jin | 1 | -1/+1 | |
2018-03-27 | mc: fix crash in acme with hidpi display | Xiao-Yong Jin | 1 | -5/+9 | |
2018-03-27 | samterm: free some getenv results | Xiao-Yong Jin | 1 | -2/+7 | |
2018-03-27 | sam: freetmpstr instead of free | Xiao-Yong Jin | 1 | -1/+1 | |
2018-03-27 | libdraw: fix some memory leaks in font handling | Xiao-Yong Jin | 5 | -6/+18 | |
2018-03-27 | fontsrv: fix some memory leaks | Xiao-Yong Jin | 2 | -1/+4 | |
2018-03-27 | devdraw: fix some memory leaks in x11 | Xiao-Yong Jin | 2 | -1/+5 | |
2018-03-27 | acme: fix some memory leaks | Xiao-Yong Jin | 3 | -2/+8 | |
2018-03-27 | fontsrv: enlarge drawing buffer for subfonts on macOS | Xiao-Yong Jin | 1 | -1/+3 | |
Double the width returned by CTFontGetBoundingBox when drawing. Add box drawing characters for determining the line height. Call freememimage(1) for the character memimage. Fixes #18. Fixes #120. Fixes #146. | |||||
2018-03-27 | mount, 9pfuse: detect macports installed osxfuse | Xiao-Yong Jin | 1 | -0/+8 | |
MacPorts installs osxfuse under /opt/local. | |||||
2018-03-23 | fontsrv: skip only the surrogate pairs | Mechiel Lukkien | 1 | -1/+1 | |
fontsrv wasn't rendering fontawesome icons, which uses the private use area around 0xf000. | |||||
2018-03-23 | 9pserve: fix memory leak in warning | Ray Lai | 1 | -0/+2 | |
2018-03-23 | 9term: Set TERM_PROGRAM to termprog | Martin Kühl | 1 | -0/+1 | |
TERM_PROGRAM is the customary way to identify which kind of terminal emulator program one uses on macOS. This change sets TERM_PROGRAM to termprog since both variables are used for the same purpose. | |||||
2018-03-23 | 9pfuse: retries read(3) upon EINTR | Xiao-Yong Jin | 1 | -2/+5 | |
read(3) sometimes errors with EINTR on macOS over slow connections. 9pfuse(1) now retries read(3) instead of sysfatal(3)ing. | |||||
2018-02-05 | 9pfuse: fix handling of access mode (thanks Kenji Arisawa) | David du Colombier | 1 | -1/+3 | |
Fixes #81. | |||||
2018-01-27 | acme: Do not hide dotfiles, since xplor does that nicely. | Petter Rodhelind | 1 | -3/+3 | |
2018-01-25 | Merge remote-tracking branch 'upstream/master' | Petter Rodhelind | 3 | -43/+25 | |
2018-01-23 | auxstats: get network stats in a portable manner on FreeBSD | Bakul Shah | 1 | -33/+14 | |
as the old grody way doesn't work any more on FreeBSD-10 and later. | |||||
2018-01-17 | rc: use proper type for storing ulimit values | Ray Lai | 1 | -6/+7 | |
rc on amd64 stores ulimit values as 32-bit int, but the limits on OpenBSD amd64 can exceed 2^31, so "ulimit -a" shows some values as negative. This is a problem when I want to increase my ulimit but the hard ulimit values are printed as negative. | |||||
2018-01-03 | gview: fix int vs ulong confusion causing silent exit 1 at startup | Russ Cox | 1 | -4/+4 | |
2017-11-27 | Merge remote-tracking branch 'upstream/master' | Petter Rodhelind | 1 | -0/+1 | |
2017-11-27 | 9term: re-enable sys: child note for child processes | Russ Cox | 1 | -0/+1 | |
Fixes #6. Change-Id: Id9950f59c7970575866a7c22a69bfbf3a271f2bb | |||||
2017-11-06 | 9term: Fix ptys in MacOS High Sierra. | Petter Rodhelind | 1 | -9/+12 | |
2017-11-06 | Merge remote-tracking branch 'upstream/master' | Petter Rodhelind | 5 | -18/+103 | |
2017-11-02 | acme: preserve window position and selection during Get | Russ Cox | 5 | -18/+103 | |
Before, executing Get in a file rewound the window offset and selection to the start of the file. After this CL, Get preserves the window offset and selection, where preserve is defined as "the same line number and rune offset within the line". So if the window started at line 10 before and the selection was line 13 chars 5-7, then that will still be true after Get, provided the new content is large enough. This should help the common situation of plumbing a compiler error, realizing the window is out of date, clicking Get, and then losing the positioning from the plumb operation. | |||||
2017-10-30 | samterm: Mouse scroll one line at a time. | Petter Rodhelind | 1 | -0/+4 | |
2017-10-26 | 9term: Use acme colors. | Petter Rodhelind | 1 | -3/+6 | |
2017-10-26 | samterm: Fix indent and code style. | Petter Rodhelind | 1 | -14/+14 | |
2017-10-25 | samterm: Add line wrapping for LINESTART/LINEEND, ctrl+a and ctrl+e. | Petter Rodhelind | 1 | -5/+14 | |
2017-10-25 | samterm: Remove focus follows mouse. | Petter Rodhelind | 1 | -2/+0 | |
2017-10-25 | samterm: Add mouse scrolling. | Petter Rodhelind | 2 | -14/+21 | |
This makes it possible to use the scroll wheel to simulate button 1 and button 3 clicks in the scroll bar. It scrolls in the same way with variable scroll sections. Further down, more lines per scroll etc... | |||||
2017-10-23 | samterm: change focus on mouseover | Petter Rodhelind | 1 | -0/+2 | |
2017-10-23 | samterm: Add undo/redo key bindings. | Petter Rodhelind | 1 | -0/+6 | |
2017-10-23 | samterm: Add sendcmd for arbitrary input in the command window. | Petter Rodhelind | 1 | -0/+42 | |
2017-10-22 | acme: Move one line up/down using ^P and ^N. | Petter Rodhelind | 1 | -32/+42 | |
2017-10-16 | acme: Hide dotfiles in dirs. | Petter Rodhelind | 1 | -0/+3 | |
These can easily be shown in a win-window with 'ls -a'... | |||||
2017-10-16 | Merge remote-tracking branch 'upstream/master' | Petter Rodhelind | 27 | -23/+98 | |
2017-10-14 | acme: free buf in checksha1 | Russ Cox | 1 | -0/+1 | |
Thanks to Lorenzo Beretta for noticing. | |||||
2017-10-13 | 9term: fix getpts on macOS 10.13 | David du Colombier | 1 | -0/+16 | |
Since macOS 10.13, opening the /dev/ptyXX files always return ENOENT. Consequently, we changed getpts to use openpty to open a pseudoterminal, like on Linux and OpenBSD. Fixes #90. Fixes #110. | |||||
2017-10-13 | upas/nfs: fix warnings | David du Colombier | 3 | -10/+2 | |
decode.c:146:8: warning: variable ‘argv’ set but not used fs.c:953:47: warning: variable ‘reset’ set but not used imap.c:348:6: warning: variable ‘prefix’ set but not used Updates #114. | |||||
2017-10-10 | acme: check file content before declaring file "modified since last read" | Russ Cox | 23 | -13/+79 | |
Bad remote file systems can change mtime unexpectedly, and then there is the problem that git rebase and similar operations like to change the files and then change them back, modifying the mtimes but not the content. Avoid spurious Put errors on both of those by checking file content. (False positive "modified since last read" make the real ones difficult to notice.) | |||||
2017-10-09 | Merge remote-tracking branch 'upstream/master' | Petter Rodhelind | 2 | -40/+113 | |
2017-10-09 | devdraw: fix build on macOS < 10.12 | Rudá Moura | 1 | -0/+2 | |
After making the build on macOS silent on commit 310ae03, the build was broken on macOS lesser than 10.12 (Sierra). This commit conditionally checks the version the of the SDK before using the defined values for silent build. Fixes #66. | |||||
2017-10-01 | xd: add -R for runewise dump | Leah Neukirchen | 1 | -40/+111 | |
Ported from Plan 9 2013-05-21. https://github.com/0intro/plan9/commit/b377a116d132865c011a3fb3ea76528ffd32963f Closes #16. | |||||
2017-09-28 | Merge remote-tracking branch 'upstream/master' | Petter Rodhelind | 28 | -68/+23 | |
2017-09-14 | all: remove .cvsignore files | Kare Nuorteva | 22 | -62/+0 | |
Rename following .cvsignore files to .gitkeep since they are required by the build (directories must exist before build): - bin/fossil/.gitkeep - bin/fs/.gitkeep - bin/venti/.gitkeep Change-Id: I9c2865058480cffb3a4613f25e2eca1f7e5578c0 | |||||
2017-09-01 | lib9: import frand function from Plan 9 | David du Colombier | 2 | -0/+18 | |
Fixes #15. | |||||
2017-09-01 | svgpic: fix warnings | David du Colombier | 1 | -3/+1 | |
plsvg.c:291:21: warning: variable ‘y2’ set but not used plsvg.c:291:17: warning: variable ‘x2’ set but not used | |||||
2017-09-01 | libmach: initialize ss variable in stabsline2pc function | David du Colombier | 1 | -1/+2 | |
Fixes #58. |