diff options
-rw-r--r-- | ChangeLog | 60 | ||||
-rwxr-xr-x | control-center | 7 |
2 files changed, 65 insertions, 2 deletions
@@ -1,3 +1,63 @@ +2003-01-07 19:42 pablo + + * control-center: removed call to bind_textdomain_codeset (libDrakX + already did charset conversion; even if it failed in some cases, it + has to be fixed in libDrakX) + +2003-01-05 13:44 pablo + + * control-center: small i18n fix + +2003-01-02 13:19 tvignaud + + * control-center: - add missing wizards (firewall, nfs, server) - + better and simpler wizards managment - if current theme hasn't a + gtk ressource file to handle backgrounds, then we default on the + default theme one - fix waitpid usage and really do non blocking + zombies reaping - fix and restore tools embedding - only pass + --summary to wizards - enforce gtk+2 logic on sockets behavior - + begin to write tools description + +2003-01-02 09:28 tvignaud + + * clock.pl, menus_launcher.pl, print_launcher.pl: - perl-gtk2 port + - cleanups + +2002-12-30 23:15 alus + + * po/pl.po: changed to utf-8 + +2002-12-30 12:55 pablo + + * po/fi.po: updated po file + +2002-12-28 18:38 alus + + * po/pl.po: updated + +2002-12-27 18:34 pablo + + * po/vi.po: updated po file + +2002-12-26 15:20 pablo + + * po/: et.po, ru.po, zh_CN.po: updated po files + +2002-12-24 20:38 pablo + + * po/: af.po, ar.po, az.po, be.po, bg.po, br.po, bs.po, ca.po, + cs.po, cy.po, da.po, de.po, drakconf.pot, el.po, eo.po, es.po, + et.po, eu.po, fi.po, fr.po, ga.po, gl.po, hr.po, hu.po, id.po, + it.po, ja.po, ka.po, ko.po, lt.po, lv.po, ms.po, mt.po, nl.po, + no.po, pl.po, pt.po, pt_BR.po, ro.po, ru.po, sk.po, sl.po, sp.po, + sq.po, sr.po, sv.po, ta.po, tg.po, th.po, tr.po, uk.po, vi.po, + wa.po, zh_CN.po, zh_TW.po: updated pot file + +2002-12-20 18:30 tvignaud + + * ChangeLog, control-center, drakconf.spec: first attempt to + restore embedded support + 2002-12-20 17:57 tvignaud * drakconf.spec: typo fix diff --git a/control-center b/control-center index 02c769f7..6857587b 100755 --- a/control-center +++ b/control-center @@ -395,7 +395,7 @@ my (@curr_state, @old_state); my ($d_width, $d_height) = (160, 45); my @colors = (gtkcolor(0, 0, 0), gtkcolor(0xAA, 0xAA, 0xFF), gtkcolor(0, 0, 0)); my $spacing = 25; -my $scale = 4; +my $scale = 0.5; my (@lspacing, $txt_offset); my $top_lspacing = 4; @@ -494,7 +494,10 @@ foreach (@tree) { # Create right notebook pages : - my $tbl = create_packtable({ col_spacings => $spacing, row_spacings => $spacing, homogeneous => 1 }, + my $tbl = create_packtable({ col_spacings => $spacing, row_spacings => $spacing, homogeneous => 1, + xpack => [ 'expand', 'shrink', 'fill' ], + ypack => [ 'shrink' ], + }, group_by2(map { my ($label, $tag) = @$_; my $text = $exec_hash->{$label}[3]; |