-
The latest unreleased code in subversion has fixed this problem. You can compile it and test yourself if you like. Alternatively the fix will be available in the next release.
2009-10-19 02:47:00 UTC in iTerm.app
-
delx committed revision 1878 to the iTerm.app SVN repository, changing 1 files.
2009-10-19 02:45:25 UTC in iTerm.app
-
Is this something new that happens only with 10.6, or does it happen with 10.5 too?
Also, could you please provide step by step instructions on what you are doing, what the problematic behaviour is, and what you expected to happen instead.
Thanks.
2009-10-19 00:12:28 UTC in iTerm.app
-
See #2875908. I'll be releasing a fix for this soon.
2009-10-19 00:08:28 UTC in iTerm.app
-
delx made 1 file-release changes.
2009-10-18 22:03:02 UTC in iTerm.app
-
delx made 1 file-release changes.
2009-10-18 22:00:06 UTC in iTerm.app
-
Older versions of iTerm (prior to 2009-03-13) cached the results of font rendering. There were various issues with this, so I removed it. At the time I tested with a variety of fonts to ensure rendering speed was about the same. Could somebody please check to see if there is any difference in performance with the older versions of iTerm that used the character cache?
The changelog on the...
2009-10-15 03:03:51 UTC in iTerm.app
-
Due to the way 'less' works it is always going to be more CPU intensive to scroll up than down. When scrolling down it inserts one new line, when scrolling up it redraws the entire screen. Nothing iTerm can do about this.
It seems that you're noticing that some fonts are slower to draw than others. This has been reported in #2865688.
2009-10-15 02:50:08 UTC in iTerm.app
-
Indeed :)
Please see the FAQ on the home page.
2009-10-15 02:44:46 UTC in iTerm.app
-
It seems to work fine for me using this script:
#!/usr/bin/perl
# $XFree86$
for ($bg = 0; $bg < 256; $bg++) {
print "\x1b[9;1H\x1b[2J";
for ($fg = 0; $fg < 256; $fg++) {
print "\x1b[48;5;${bg}m\x1b[38;5;${fg}m";
printf "%03.3d/%03.3d ", $fg, $bg;
}
sleep 1;
print "\n";
}.
2009-10-12 06:22:59 UTC in iTerm.app