Timeline
Apr 30, 2010:
- 12:23 AM Changeset [fe4c786]release-1.10release-1.7release-1.8release-1.9 by
- Avoids segfault on NULL curswin for viewwin When the screen is too small, newwin() fails and gives back a NULL window. This avoids the crash.
Apr 29, 2010:
- 6:29 PM Ticket #135 (magic Discuss integration) created by
- I'm subbed to <discuss,*,%me%>. This means that when I get added to …
Apr 28, 2010:
- 2:27 PM Changeset [719173c4]release-1.10release-1.7release-1.8release-1.9 by
- Recreate the popwin on relayout This should fix redraws when resizing. We don't actually need to do it on every relayout, but I think that should wait until owl_window. The actual logic we want is probably something like parent-changed => relayout-children.
- 2:27 PM Changeset [06cc8d9]release-1.10release-1.7release-1.8release-1.9 by
- Simplify owl_popwin_is_active The current implementation is ridiculous.
- 2:27 PM Changeset [c21b8b7]release-1.10release-1.7release-1.8release-1.9 by
- Punt some redisplays in the popwin libpanel already takes care of stacking for us.
- 2:27 PM Changeset [644a0f8]release-1.10release-1.7release-1.8release-1.9 by
- Use touchwin in owl_function_full_redisplay redrawwin also memsets random chunks of the screen, which is completely not relevant for us.
- 2:27 PM Changeset [0e3cdf1]release-1.10release-1.7release-1.8release-1.9 by
- Punt a pointless debug and a trailing newline
- 2:27 PM Changeset [f92acd7]release-1.10release-1.7release-1.8release-1.9 by
- Only relayout on widget resizes We needn't compute a new window size and ask ncurses to resizeterm
- 2:27 PM Changeset [f7cf6c2]release-1.10release-1.7release-1.8release-1.9 by
- Allow scheduling of relayouts as well as resizes
- 2:27 PM Changeset [263320f]release-1.10release-1.7release-1.8release-1.9 by
- Require resizeterm This allows us to get rid of the endwin, which causes problems. Specifically that ncurses will query the size itself on the next doupdate, causing a potential race. It also results in an annoying flicker that we see in typwindelta. If we punt passing arguments to owl_global_resize, I think we can support resizeterm-less curses with a bit of a dance: endwin() h,w = query_terminal_size() relayout_windows(h, w) doupdate() if (h,w != query_ncurses_size()) h,w = query_ncurses_size() relayout_windows(h, w) (This will only flicker given a race.) That said, this is annoying and we build with our own curses on athena 9. We may as well just assume it's there.
- 2:27 PM Changeset [f9f88f3]release-1.10release-1.7release-1.8release-1.9 by
- Separate relayout from resize
- 2:27 PM Changeset [285bc9a]release-1.10release-1.7release-1.8release-1.9 by
- Refactor the ioctl and size work into a separate function
- 2:27 PM Changeset [1f3a423]release-1.10release-1.7release-1.8release-1.9 by
- Consistently use g->{lines,cols} for the final size We have various fallbacks and then ignore them, which will cause problems should we ever need the fallbacks.
- 11:11 AM Changeset [675a998]release-1.10release-1.7release-1.8release-1.9 by
- Fix an 'uninitialized' warning in recv:shift-right I have no idea why I didn't catch this when I was fixing recv_shift_left.
Apr 27, 2010:
- 11:46 PM Changeset [14965e5]release-1.10release-1.7release-1.8release-1.9 by
- make viewperson, vp aliases for viewuser named in the same fashion as the default zlog directory for personals Signed-off-by: Kevin Riggle <kevinr@free-dissociation.com>
- 11:14 PM Changeset [07f655b]release-1.10release-1.7release-1.8release-1.9 by
- Bump version for development.
- 5:21 PM Changeset [8479494]release-1.10release-1.7release-1.8release-1.9 by
- Clear the resizepending flag before doing a resize, not after. This prevents us from losing resize events that occur during a resize operation. Signed-off-by: Anders Kaseorg <andersk@mit.edu> Reviewed-by: Nelson Elhage <nelhage@mit.edu>
- 5:21 PM Changeset [7892963]release-1.10release-1.7release-1.8release-1.9 by
- Mark variables modified from signal handlers as volatile sig_atomic_t. According to POSIX, this is the only type of variable (other than errno) that may be accessed from a signal handler with defined results. In practice, at least the volatile is important to prevent the compiler from reordering accesses. err_signal_info is a bigger struct that cannot be assigned atomically, but it’s only for debugging so we just do the best we can. Signed-off-by: Anders Kaseorg <andersk@mit.edu> Reviewed-by: Nelson Elhage <nelhage@mit.edu>
Apr 26, 2010:
- 11:22 PM Changeset [72634c5]release-1.10release-1.7release-1.8release-1.9 by
- locker-update: Don't skip arches because the bare binary is missing.
- 7:52 PM Changeset [cef53f9]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- BarnOwl 1.6rc2
- 7:52 PM Changeset [a06334e]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Use a wrapper script for zcrypt Actual binaries get zcrypt.real pointed to them.
- 7:52 PM Changeset [0be790a]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Also create symlinks properly for zcrypt
- 7:52 PM Changeset [751ae8c]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- If the targets do not exist, remove the link This should correctly handle locker-updates to versions before and after the soname migration.
- 7:49 PM Changeset [0fd5bd5]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Incorporate the zephyr soname into the executable for *_deb50.
- 7:49 PM Changeset [a4b0572]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- locker-update: Create zephyr{3,4} symlinks as-needed Checks existence of target files before creating any
- 7:49 PM Changeset [0ee43c8]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Unify the beta and non-beta code paths
- 7:48 PM Changeset [60fcd71]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- zcrypt: des_ecb_encrypt doesn't NULL-terminate the output block. Output is a 'unsigned char [8]', so it couldn't even NULL-terminate it in place if it wanted to. So copy the decrypted buffer into a larger buffer that's guaranteed to have a NULL on the end.
- 3:46 PM Changeset [3001c11]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Add a test case for deleted syntax
- 3:46 PM Changeset [6dba228]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Fix filter tests to account for new deleted syntax
- 3:46 PM Changeset [ae333f0]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Add filterproc.c to BASE_SRCS Fixes linking of the two tester executables.
- 3:46 PM Changeset [4123da1]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Fix references to old editwin API in tester
Apr 25, 2010:
- 4:14 PM Changeset [1ea0249]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Add releasing-barnowl.txt
- 3:57 PM Changeset [1cfcab7]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Update copyright notices for 2010.
- 3:50 PM Changeset [858c9c4]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Our source actually expects DATADIR to be $(pkgdatadir).
Apr 24, 2010:
- 5:38 PM Changeset [5a57386]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Define DATADIR and BINDIR in the Makefile, not config.h This is the recommended way to do it, and deals with the fact that DATADIR and BINDIR themselves expand to variable references.
- 3:02 PM Changeset [9d2a105]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- BarnOwl 1.6rc1
- 2:44 PM Changeset [c18d069]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- add-changelog: Fix the usage message
- 2:22 PM Changeset [a1d98e4]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Support filtering on whether a message has been deleted.
Apr 16, 2010:
- 7:18 PM Changeset [63de71c]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- aim.h: Do the same stdbool.h dance This generates warnings (about redefining bool) on Solaris, but it compiles, and that's all I can bring myself to care about right now.
- 7:17 PM Changeset [13d6a53]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- scripts/locker-update: Install a zcrypt symlink
- 6:34 PM Changeset [75b0adb]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Check for stdbool.h in configure. Athena 9 Solaris doesn't have a working stdbool.h. The chain of defines and ifdefs is slightly modified from the "Particular Headers" section of autoconf's info pages.
- 6:04 PM Changeset [ef4700c]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Properly quote strings containing newlines or tabs.
- 6:04 PM Changeset [6e58ff2]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Check for an unset mark in owl_editwin_replace_region. Fixes #134.
- 6:01 PM Changeset [7ba7d66]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- zcrypt: Fix a segfault without any arguments.
Apr 8, 2010:
- 11:36 PM Changeset [b094191]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Include config.h in zcrypt.c
- 10:00 PM Changeset [e2cbbbe]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Merge branch 'refactor-zcrypt'
- 10:00 PM Changeset [9a7b4f2]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Use zcrypt from our own bin directory.
- 10:00 PM Changeset [7d03c8d]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Add zcrypt to our build system.
- 11:08 AM Ticket #134 (perl extensions can confuse the editwin) created by
- The attached code will, after being run, no longer allow editing text …
- 10:38 AM Ticket #23 (smartnarrow does not always do what I want with un and .d) closed by
- fixed: Merged geofft's modnarrow under a different name. M-m and M-M now do …
- 10:36 AM Ticket #130 (Use-after-free with pexec) closed by
- fixed: Fixed in 125fd21c2d564a4a7d0a027552b7156a4d694243
- 10:35 AM Ticket #115 (Unbindkey function) closed by
- fixed: Fixed in 8a921b5e61689654774fef672165f4c56c01036d
- 10:35 AM Ticket #120 (‘make check’ fails on perl < 5.9.4 or ≥ 5.10.1) closed by
- fixed: Fixed in 9f026c14abe876082d0f781b81a150548e4b0783
Apr 7, 2010:
- 5:43 PM Ticket #133 (:unsub doesn't work if ~/.zephyr.subs is a symlink) created by
- My ~/.zephyr.subs is a symlink so that I can easily switch subs lists. …
Apr 6, 2010:
- 12:32 PM Ticket #132 (Reply does not handle newlines correctly) created by
- If I send a zephyr to instance "ab\ncd", and then reply to it, the …
Apr 2, 2010:
- 10:40 PM Changeset [8a5b5a1]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Add option to smartnarrow to temporarily invert narrow-related. Bind this to M-n and M-M. Signed-off-by: Geoffrey Thomas <geofft@mit.edu> [nelhage@mit.edu: Rename modnarrow → narrow-related] Signed-off-by: Nelson Elhage <nelhage@mit.edu>
- 10:40 PM Changeset [66e409c]release-1.10release-1.6release-1.7release-1.8release-1.9 by
- Add the "narrow-related" variable. This controls whether narrowing to a class includes variant class names as well. Signed-off-by: Geoffrey Thomas <geofft@mit.edu> [nelhage@mit.edu: Change variable name from 'modnarrow'] Signed-off-by: Nelson Elhage <nelhage@mit.edu>
Note: See TracTimeline
for information about the timeline view.