diff options
author | Bastien Nocera <hadess@hadess.net> | 2007-02-20 17:26:57 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@src.gnome.org> | 2007-02-20 17:26:57 +0000 |
commit | a18e6c4c1e6d891792fe520382118291123f23de (patch) | |
tree | 4a1a8d8cf67b1e621479b2ed543c8668dc103c3e | |
parent | a7882ab6b6c634e86d0087e1349603fe86833c32 (diff) | |
download | totem-a18e6c4c1e6d891792fe520382118291123f23de.tar.gz |
upd print more details about the unhandled variables 2.17.92V_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
svn path=/trunk/; revision=4055
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 16 | ||||
-rw-r--r-- | browser-plugin/totemPluginGlue.cpp | 12 | ||||
-rw-r--r-- | configure.in | 4 |
4 files changed, 39 insertions, 2 deletions
@@ -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: @@ -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 |