ca39bbd401
gnome-terminal development has stagnated. Almost all patches are in GNOME bugzilla for the weeks and months. Bump the PORTREVISION. -patch-01_vtemodule: Fix build with the python module -patch-03_cursor_position: Added a patch for supporting some save/restore cursor position console sequences -patch-04_dsp_non_alias: FcConfigSubstitute in place of _vte_fc_defaults_from_gtk to get antialias and hinting value http://bugs.gnome.org/show_bug.cgi?id=142640 -patch-05_performance_boost: Balanced performance improvement http://bugs.gnome.org/show_bug.cgi?id=143914 -- This is very amazing improvement. Here's benchmark of it to show that gnome-terminal isn't far from aterm and xterm anymore. Old benchmark: ======================================= $ time ls -lR /usr/ports aterm: 7.99 real1.31 user2.75 sys xterm: 11.04 real1.34 user2.47 sys gnome: 41.76 real1.12 user2.45 sys (ouch....) ======================================= New benchmark: ============================================== $ time ls -lR /usr/ports aterm: 7.28 real 1.20 user 2.41 sys xterm: 9.85 real 0.91 user 2.08 sys gnome: 10.41 real 0.86 user 2.02 sys ============================================== Big deal! -patch-06_remove_doublefree: Resolve double free problem http://bugs.gnome.org/show_bug.cgi?id=161337 -patch-07_set_backspace_to_utf8: Set backspace behavior to utf8 (depends on utf8 locale) http://bugs.gnome.org/show_bug.cgi?id=158200 -patch-08_multiscreen_safe: Make vte multi-screen safe http://bugs.gnome.org/show_bug.cgi?id=160782 -patch-09_redraw_vte_screen: Redraw vte screen with correct background color http://bugs.gnome.org/show_bug.cgi?id=125364 -patch-10_hide_pageup_behavior: Hide manifestation of PageUp behavior with less http://bugs.gnome.org/show_bug.cgi?id=115149 <marcus>: I for one welcome our new vte patch overlord. I think all of them would make good additions. <ahze>: I am all for the performance_boost patch! gnome-terminal kinda sucks when lines are going by fast. <mezz>: showing the before and after benchmark. <marcus>: Commit! Commit! :-) Reviewed by: marcus and ahze
14 lines
332 B
Text
14 lines
332 B
Text
--- src/vte.c.orig 2004-12-20 00:57:39 -0800
|
|
+++ src/vte.c 2004-12-20 00:57:44 -0800
|
|
@@ -7125,7 +7125,11 @@
|
|
break;
|
|
default:
|
|
if (pid != 0) {
|
|
+ char *codeset;
|
|
terminal->pvt->pty_master = i;
|
|
+ g_get_charset(&codeset);
|
|
+ _vte_pty_set_utf8(terminal->pvt->pty_master,
|
|
+ (strcmp(codeset, "UTF-8") == 0));
|
|
}
|
|
}
|
|
|