Updated to 7.0.121
2952 7.0.092 (after 7.0.082) list of internal function args is obsolete
2320 7.0.093 matchparen plugin can't handle some values of 'matchpairs'
2394 7.0.094 fileinfo message is given too often after ":buf N"
52575 7.0.095 Greek tutor is not available in utf-8
2561 7.0.096 taglist() does not use path of tags file
2617 7.0.097 tab pages line was not updated for ":tabclose N"
2196 7.0.098 redirection didn't work inside cmdline completion
2189 7.0.099 GUI: scrolling causes problems for the popup menu
2086 7.0.100 "zug" may report the wrong filename
2732 7.0.101 "zw" mostly doesn't work; "zg" may create wrong directory
1634 7.0.102 redraw problem in cmdline when using SCIM
1617 7.0.103 (after 7.0.101) compiler warning for uninitialized variable
2522 7.0.104 CursorHold[I] may trigger when it is not wanted
1513 7.0.105 during incremental search the ruler is not updated
5102 7.0.106 spell popup menu may have side effects
1805 7.0.107 tab pages line was not redrawn when using 'incsearch'
1923 7.0.109 Lisp indenting gets confused by an escaped quote in a string
2557 7.0.110 Amiga: Compilation problems when not using libnix
10411 7.0.111 gzip plugin can't handle file names with special characters
2687 7.0.112 Python interface doesn't compile with Python 2.5
1878 7.0.113 crash when using CTRL-L in Insert mode completion
1964 7.0.114 get extra undo point when using CTRL-C to abort Insert mode
2339 7.0.115 missing some matches when Insert mode completion ignores case
1508 7.0.116 MS-Windows: :version reported 32 bits for 64 bits systems
5028 7.0.117 problem when mixing keepend and extend in syntax highlighting
1529 7.0.118 printf() doesn't allow zero padding for strings
1412 7.0.119 CursorHold event is not triggered when leaving Insert mode
1780 7.0.120 crash when using getreg('=') in the = register
1549 7.0.121 GUI: dragging last status line doesn't work with text tabline
are run with elevated privileges. Remove MAKE_PACKAGE_AS_ROOT
for now, since it is not sure whether the functionality in the current
form will stay and developers should spend time on the destdir support
instead.
errors. Now "make depends" stops on dependency directories that don't
exist.
The dependencies are first extracted into two temporary files and then
combined with cat(1) because otherwise "make depends" passes silently on
errors when it is called for the second time. Somehow ${.TARGET} didn't
get removed.
Changes in version 0.1.1.24 - 2006-09-29
o Major bugfixes:
- Allow really slow clients to not hang up five minutes into their
directory downloads (suggested by Adam J. Richter).
- Fix major performance regression from 0.1.0.x: instead of checking
whether we have enough directory information every time we want to
do something, only check when the directory information has changed.
This should improve client CPU usage by 25-50%.
- Don't crash if, after a server has been running for a while,
it can't resolve its hostname.
- When a client asks us to resolve (not connect to) an address,
and we have a cached answer, give them the cached answer.
Previously, we would give them no answer at all.
o Minor bugfixes:
- Allow Tor to start when RunAsDaemon is set but no logs are set.
- Don't crash when the controller receives a third argument to an
"extendcircuit" request.
- Controller protocol fixes: fix encoding in "getinfo addr-mappings"
response; fix error code when "getinfo dir/status/" fails.
- Fix configure.in to not produce broken configure files with
more recent versions of autoconf. Thanks to Clint for his auto*
voodoo.
- Fix security bug on NetBSD that could allow someone to force
uninitialized RAM to be sent to a server's DNS resolver. This
only affects NetBSD and other platforms that do not bounds-check
tolower().
- Warn user when using libevent 1.1a or earlier with win32 or kqueue
methods: these are known to be buggy.
- If we're a directory mirror and we ask for "all" network status
documents, we would discard status documents from authorities
we don't recognize.
when you do not preserve timestamps in mk, this can cause
config.guess and config.sub to be newer than config.guess.1 and
config.sub.1. In that case, the man pages need to be rebuilt, and
build fails because pkgsrc lacks help2man. Work around this situation.
package needs to be packed by root or whether the unprivileged user can
do that as well. Most packages don't need root privileges, but the
default value is nevertheless "yes" to not break too many existing
packages.
pkgsrc users are encouraged to add the following to their mk.conf:
MAKE_PACKAGES_AS_ROOT?= no
The "?=" operator here is important because after the testing phase,
this variable is only intended to be set by packages. If "=" would be
used instead, packages could not override the value.
* Support for tmpfs, enabled via MNT_RAMFS_{ARGS,CMD}.
To use tmpfs and all the available RAM in the machine, use the
following lines in your configuration file:
MNT_RAMFS_CMD="mount_tmpfs"
MNT_RAMFS_ARGS="tmpfs"
By default it will default to MNT_RAMFS_CMD="mount_mfs" and
MNT_RAMFS_ARGS="-s 128m swap" to maintain compatibility with NetBSD
versions < 4.0.
* Support to mount a specific PACKAGES directory via PACKAGESDIR
in the configuration file.
* Added CDRECORD_BIN and MKISOFS_BIN to specify alternative binaries.
* Remove MNT_FOO_ARGS, mount_null(8) is used on the root memory filesystem
to mount all dependent directories.
* Fix booting with GNU GRUB and MULTIBOOT on >=4.0.
Please upgrade to this version and let me know if you are not
happy...