From 0c781568427fa3b7d483ba7ff9c2916c945d74ed Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 10 Jul 2013 23:53:58 +0200 Subject: New release --- .version | 2 +- debian/changelog | 6 ++++++ debian/files | 2 +- docs/loadbars.1 | 2 +- lib/Loadbars/Main.pm | 3 ++- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.version b/.version index faef31a..39e898a 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.7.0 +0.7.1 diff --git a/debian/changelog b/debian/changelog index 5963ebd..f2dbc47 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +loadbars (0.7.1) stable; urgency=low + + * It's now possible to resize the window via mouse + + -- Paul Buetow Wed, 10 Jul 2013 23:53:24 +0200 + loadbars (0.7.0) stable; urgency=low * Initial version for Debian GNU/Linux Wheezy diff --git a/debian/files b/debian/files index 25fb84c..3c343dc 100644 --- a/debian/files +++ b/debian/files @@ -1 +1 @@ -loadbars_0.7.0_all.deb utils optional +loadbars_0.7.1_all.deb utils optional diff --git a/docs/loadbars.1 b/docs/loadbars.1 index 1ba71cb..4ac66ff 100644 --- a/docs/loadbars.1 +++ b/docs/loadbars.1 @@ -124,7 +124,7 @@ .\" ======================================================================== .\" .IX Title "LOADBARS 1" -.TH LOADBARS 1 "2013-06-19" "loadbars 0.7.0" "User Commands" +.TH LOADBARS 1 "2013-06-27" "loadbars 0.7.1" "User Commands" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/lib/Loadbars/Main.pm b/lib/Loadbars/Main.pm index 2f8e200..f53bad8 100644 --- a/lib/Loadbars/Main.pm +++ b/lib/Loadbars/Main.pm @@ -466,8 +466,9 @@ sub loop ($@) { # While there are events to poll, poll them all! while ( SDL::Events::poll_event($event) ) { + # Videoresize - if ($event->type() == 16) { + if ( $event->type() == 16 ) { $newsize{width} = $event->resize_w; $newsize{height} = $event->resize_h; $resize_window = 1; -- cgit v1.2.3