summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-07-10 23:53:58 +0200
committerPaul Buetow <paul@buetow.org>2013-07-10 23:53:58 +0200
commit0c781568427fa3b7d483ba7ff9c2916c945d74ed (patch)
tree285d238f3c29b4a9c64a48776bab2ebb4b41f556
parentbc120edb60bcf7897723bd43e2f1e7349ca6619f (diff)
New release0.7.1
-rw-r--r--.version2
-rw-r--r--debian/changelog6
-rw-r--r--debian/files2
-rw-r--r--docs/loadbars.12
-rw-r--r--lib/Loadbars/Main.pm3
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 <paul@buetow.org> 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;