diff -Nru vlc-0.8.6.release.e+x264svn20071224+faad2.6.1/debian/changelog vlc-0.8.6.release.e+x264svn20071224+faad2.6.1/debian/changelog --- vlc-0.8.6.release.e+x264svn20071224+faad2.6.1/debian/changelog 2008-09-07 09:58:44.000000000 +0800 +++ vlc-0.8.6.release.e+x264svn20071224+faad2.6.1/debian/changelog 2008-09-07 09:58:47.000000000 +0800 @@ -1,3 +1,11 @@ +vlc (0.8.6.release.e+x264svn20071224+faad2.6.1-0ubuntu3.2) intrepid; urgency=low + + * debian/patches/vlcstatusbarlength.patch: Added patch by Ludovic + Rousseau to have vlc display the playing time correctly. (LP: + #88487) + + -- Nicholas Hanley-Steemers Sun, 07 Sep 2008 09:50:59 +0800 + vlc (0.8.6.release.e+x264svn20071224+faad2.6.1-0ubuntu3.1) hardy-security; urgency=low * SECURITY UPDATE: multiple denials of service, arbitrary code execution and diff -Nru vlc-0.8.6.release.e+x264svn20071224+faad2.6.1/debian/patches/vlcstatusbarlength.patch vlc-0.8.6.release.e+x264svn20071224+faad2.6.1/debian/patches/vlcstatusbarlength.patch --- vlc-0.8.6.release.e+x264svn20071224+faad2.6.1/debian/patches/vlcstatusbarlength.patch 1970-01-01 07:30:00.000000000 +0730 +++ vlc-0.8.6.release.e+x264svn20071224+faad2.6.1/debian/patches/vlcstatusbarlength.patch 2008-09-07 09:58:47.000000000 +0800 @@ -0,0 +1,16 @@ +--- /modules/gui/wxwidgets/interface.cpp 2008-09-07 09:30:26.000000000 +0800 ++++ /modules/gui/wxwidgets/interface.cpp 2008-09-07 09:37:13.000000000 +0800 +@@ -418,7 +418,7 @@ + /* Creation of the status bar + * Helptext for menu items and toolbar tools will automatically get + * displayed here. */ +- int i_status_width[3] = {100, 40, -1}; ++ int i_status_width[3] = {150, 55, -1}; + statusbar = CreateStatusBar( 3 ); /* 2 fields */ + statusbar->SetStatusWidths( 3, i_status_width ); + statusbar->SetStatusText( wxString::Format(wxT("x%.2f"), 1.0), 1 ); +@@ -1527,3 +1527,4 @@ + } + #endif + #endif ++