[gnome-shell] Explicitly specify JS version
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] Explicitly specify JS version
- Date: Thu, 16 Dec 2010 22:38:36 +0000 (UTC)
commit 9f39ce5d278e30db5f6f88103a84b734eb3ee3a7
Author: Colin Walters <walters verbum org>
Date: Fri Dec 10 15:03:26 2010 -0500
Explicitly specify JS version
See bug 636652 for rationale.
https://bugzilla.gnome.org/show_bug.cgi?id=636983
src/gnome-shell-plugin.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/src/gnome-shell-plugin.c b/src/gnome-shell-plugin.c
index 9d96303..69e63a2 100644
--- a/src/gnome-shell-plugin.c
+++ b/src/gnome-shell-plugin.c
@@ -364,7 +364,10 @@ gnome_shell_plugin_start (MetaPlugin *plugin)
shell_js = JSDIR;
search_path = g_strsplit(shell_js, ":", -1);
- shell_plugin->gjs_context = gjs_context_new_with_search_path(search_path);
+ shell_plugin->gjs_context = g_object_new (GJS_TYPE_CONTEXT,
+ "search-path", search_path,
+ "js-version", "1.8",
+ NULL);
g_strfreev(search_path);
/* Disable the gnome-volume-control debug */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]