summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--NEWS16
-rw-r--r--browser-plugin/totemPluginGlue.cpp12
-rw-r--r--configure.in4
4 files changed, 39 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b934776db..8316854a5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+============ Version 2.17.92
+
+2007-02-20 Bastien Nocera <hadess@hadess.net>
+
+ * NEWS: upd
+ * browser-plugin/totemPluginGlue.cpp: print more details about the unhandled
+ variables
+ * configure.in: 2.17.92
+
2007-02-19 Christian Persch <chpe@svn.gnome.org>
* browser-plugin/totemGMPPlugin.cpp:
diff --git a/NEWS b/NEWS
index 5edf6ca74..e09e4c9d0 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,21 @@
New features and significant updates in version...
+2.17.92
+* Fix building when /bin/sh isn't Bash
+* Add better debugging support to the thumbnailer and indexer
+* Don't crash when launch Totem with no filenames, and Totem
+ is already started
+* Thumbnailer:
+ - Fix problems with the first frame being captured sometimes
+* Browser plugin:
+ - Implement a few Javascript calls in the Windows Media Player-
+ compatible plugin
+* GStreamer:
+ - Avoid warnings when we can't get tag lists
+ - Use GStreamer's missing plugins functionality
+* xine-lib:
+ - Allow cancelling an open, for use in the browser plugin
+
2.17.91
* Fix crasher when getting the listed of subtitles/languages
* Handle the icyx:// protocol
diff --git a/browser-plugin/totemPluginGlue.cpp b/browser-plugin/totemPluginGlue.cpp
index 9eb573b9e..831de4f2c 100644
--- a/browser-plugin/totemPluginGlue.cpp
+++ b/browser-plugin/totemPluginGlue.cpp
@@ -252,6 +252,18 @@ totem_plugin_get_value (NPP instance,
}
break;
}
+ case NPPVjavascriptPushCallerBool:
+ D ("Unhandled variable NPPVjavascriptPushCallerBool");
+ err = NPERR_INVALID_PARAM;
+ break;
+ case NPPVpluginKeepLibraryInMemory:
+ D ("Unhandled variable NPPVpluginKeepLibraryInMemory");
+ err = NPERR_INVALID_PARAM;
+ break;
+ case NPPVpluginScriptableNPObject:
+ D ("Unhandled variable NPPVpluginScriptableNPObject");
+ err = NPERR_INVALID_PARAM;
+ break;
default:
D ("Unhandled variable");
err = NPERR_INVALID_PARAM;
diff --git a/configure.in b/configure.in
index a87fccd85..68cd681ca 100644
--- a/configure.in
+++ b/configure.in
@@ -2,7 +2,7 @@ AC_PREREQ(2.52)
m4_define(totem_version_major, 2)
m4_define(totem_version_minor, 17)
-m4_define(totem_version_micro, 91)
+m4_define(totem_version_micro, 92)
AC_INIT([totem],
[totem_version_major.totem_version_minor.totem_version_micro],
@@ -45,7 +45,7 @@ DBUS_REQS=0.61
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
-PLPARSER_LT_VERSION=6:4:5
+PLPARSER_LT_VERSION=6:5:5
AC_SUBST(PLPARSER_LT_VERSION)
TOTEM_VERSION_MAJOR=totem_version_major