summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2006-07-26 08:45:43 +0000
committerBastien Nocera <hadess@src.gnome.org>2006-07-26 08:45:43 +0000
commit6f754ee50a1d5b30eb869070c2e2af8b10a28b94 (patch)
tree11b0e6cef7c4dde97a61a82b82b0276284af7433
parentc95a8b53d2b4a201b5a1ee75baf43630e0f0ae47 (diff)
downloadtotem-6f754ee50a1d5b30eb869070c2e2af8b10a28b94.tar.gz
upd 1.5.90 avoid resizing if we're already the right sizeV_1_5_90
2006-07-26 Bastien Nocera <hadess@hadess.net> * NEWS: upd * configure.in: 1.5.90 * src/backend/bacon-video-widget-xine.c: (bacon_video_widget_set_scale_ratio): avoid resizing if we're already the right size
-rw-r--r--ChangeLog10
-rw-r--r--NEWS12
-rw-r--r--configure.in2
-rw-r--r--src/backend/bacon-video-widget-xine.c3
4 files changed, 26 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a8de830ae..de3d292f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+============ Version 1.5.90
+
+2006-07-26 Bastien Nocera <hadess@hadess.net>
+
+ * NEWS: upd
+ * configure.in: 1.5.90
+ * src/backend/bacon-video-widget-xine.c:
+ (bacon_video_widget_set_scale_ratio): avoid resizing if we're already
+ the right size
+
2006-07-24 Tim-Philipp Müller <tim at centricular dot net>
* src/backend/bacon-video-widget-gst-0.10.c:
diff --git a/NEWS b/NEWS
index 12e4d2a91..e61faf72c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,17 @@
New features and significant updates in version...
+1.5.90
+* Add a default filename to the save playlist dialogue
+* Add supprot for more DVD related remote buttons
+* Move the properties dialogue to the sidebar
+* Fix build with newer versions of D-Bus
+* Avoid linking directly against the Mozilla libraries, should allow
+ build-time and run-time engines to be different (build against Mozilla,
+ run in Firefox)
+* Make the "Seek To" dialogue work correctly when using the keyboard
+* Fix logo related redraws (xine-lib)
+* Try harder to extract audio/subtitles languages from files (GStreamer)
+
1.5.4
* update xine-lib requirement to avoid startup crashes
diff --git a/configure.in b/configure.in
index 9466cbd59..1cc3b9218 100644
--- a/configure.in
+++ b/configure.in
@@ -2,7 +2,7 @@ AC_PREREQ(2.52)
m4_define(totem_version_major, 1)
m4_define(totem_version_minor, 5)
-m4_define(totem_version_micro, 4)
+m4_define(totem_version_micro, 90)
AC_INIT(totem,
totem_version_major.totem_version_minor.totem_version_micro,
diff --git a/src/backend/bacon-video-widget-xine.c b/src/backend/bacon-video-widget-xine.c
index de37dbdb9..780d84664 100644
--- a/src/backend/bacon-video-widget-xine.c
+++ b/src/backend/bacon-video-widget-xine.c
@@ -3251,6 +3251,9 @@ bacon_video_widget_set_scale_ratio (BaconVideoWidget *bvw, gfloat ratio)
new_h = win_h - widget->allocation.height +
bvw->priv->video_height * ratio;
+ if (new_w == win_w && new_h == win_h)
+ return;
+
/* Change the minimum size of the widget
* but only if we're getting a smaller window */
if (new_w < widget->allocation.width