gnome-shell-extensions-pidgin icon indicating copy to clipboard operation
gnome-shell-extensions-pidgin copied to clipboard

Gnome 3.4

Open leezu opened this issue 12 years ago • 10 comments

Hey there,

it would be great, if sb could enable (or build, dont know if there were API changes or so) gnome 3.4 support :-)

thanks for the great work so far @ all

leezu avatar Mar 14 '12 19:03 leezu

ok, actually its version gnome-unstable/gnome-shell 3.3.91-0 ;-)

leezu avatar Mar 14 '12 19:03 leezu

I tried simply adding "3.4" as a valid version to the metadata file, but that didn't work. (The extensions website reports an error.)

slix avatar Apr 04 '12 21:04 slix

galpec mentioned on extensions.gnome.org that he has modified the extension for Gnome 3.4. https://extensions.gnome.org/extension/214/pidgin-conversation-integration/

lxp avatar Apr 06 '12 16:04 lxp

One more waiting for this update ;)

skoruppa avatar Apr 12 '12 10:04 skoruppa

Not sure but isn't it enough to add 3.4.0 to the metadata.json file or requires 3.4 something more?

atomfrede avatar Apr 12 '12 18:04 atomfrede

Just "3.4" doesn't work for me as well... There's some problem about metadata.locale not being evaluated as an UTF-8 string. Hardcoding the "/usr/share/locale" seems to solve the issue...

bugflux avatar Apr 13 '12 07:04 bugflux

Try this, worked for me.


diff --git a/extension.js b/extension.js
index 4e3267f..12bebc0 100644
--- a/extension.js
+++ b/extension.js
@@ -695,6 +695,6 @@ PidginClient.prototype = {
 }

 function init(metadata) {
-    imports.gettext.bindtextdomain('gnome-shell-extensions', metadata.localedir);
+    imports.gettext.bindtextdomain('gnome-shell-extensions', imports.misc.config.LOCALEDIR);
     return new PidginClient();
 }
diff --git a/metadata.json b/metadata.json
index 0fa128b..ddcb81e 100644
--- a/metadata.json
+++ b/metadata.json
@@ -2,7 +2,7 @@
  "uuid": "[email protected]",
  "name": "Pidgin Conversation Integration",
  "description": "Display Pidgin chats as notifications in the Shell message tray.",
- "shell-version": [ "3.1.91", "3.1.92", "3.2" ],
+ "shell-version": [ "3.1.91", "3.1.92", "3.2", "3.4" ],
  "localedir": "/usr/share/locale",
  "url": "https://github.com/kagesenshi/gnome-shell-extensions-pidgin"
 }

boypt avatar Apr 13 '12 17:04 boypt

The suggested patch breaks the extension on gnome-shell 3.2 with: Failed to evaluate init function. Error invoking bindtext domain at argument 2 Object is not a string, cannot convert to UTF-8

ambasta avatar May 30 '12 07:05 ambasta

plz upgrade to 3.6

ildar avatar Oct 10 '12 07:10 ildar

plz upgrade to 3.6

rajeshksv avatar Oct 18 '12 10:10 rajeshksv