- apply UTF-8 fixes from Vladimir Nadvornik

- move the free space widget to the bottom of the main panel and don't use
    highlighting
This commit is contained in:
Jindrich Novy 2006-06-07 13:01:24 +00:00
parent b8a906e933
commit 6b7b4268f9
3 changed files with 335 additions and 312 deletions

View File

@ -69,7 +69,7 @@
+ tmp = g_strdup_printf (_("%s (%d%%) of %s"), buffer1, myfs_stats.total > 0 ?
+ (int)(100 * (double)myfs_stats.avail / myfs_stats.total) : 0,
+ buffer2);
+ widget_move (&panel->widget, panel->widget.lines-3, panel->widget.cols-2-strlen(tmp));
+ widget_move (&panel->widget, panel->widget.lines-1, panel->widget.cols-2-strlen(tmp));
+ addstr (tmp);
+ g_free (tmp);
+ }

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
Summary: User-friendly text console file manager and visual shell.
Name: mc
Version: 4.6.1a
Release: 16
Release: 17
Epoch: 1
License: GPL
Group: System Environment/Shells
@ -188,6 +188,11 @@ rm -rf $RPM_BUILD_ROOT
%dir %{_sysconfdir}/mc
%changelog
* Wed Jun 7 2006 Jindrich Novy <jnovy@redhat.com> 4.6.1a-17
- apply UTF-8 fixes from Vladimir Nadvornik
- move the free space widget to the bottom of the main panel
and don't use highlighting
* Mon May 29 2006 Jindrich Novy <jnovy@redhat.com> 4.6.1a-16
- fix the free space widget patch: stat()s filesystem less
frequently, display correct info in all circumstances