Colin Guthrie

Informazioni utente

Informazioni sullo sviluppatore
Nome Colin Guthrie
Utente da Marzo 5, 2007
Numero di componenti aggiuntivi sviluppati 0 componenti aggiuntivi
Media delle valutazioni sui componenti aggiuntivi di questo sviluppatore. Nessun voto

Le mie recensioni

Bugmail

Assegnate 4 su 5 stelle

http://colin.guthr.ie/git/misc/thunderbird-bugmail/

Extra Folder Columns

Assegnate 5 su 5 stelle

Great little plugin.

I made a few adjustments to it recently to add support for renaming newsgroups to more friendly names!
http://colin.guthr.ie/2011/08/thunderavian-renaming-thunderbird-newsgroups/

Hope it gets merged into the official package, but in the mean time people can see my change via the above link :)

Hope some people fine it useful.

Col

Questa recensione riguarda una versione precedente (1.1.3) del componente aggiuntivo.  Questo utente ha inserito una recensione precedente su questo componente aggiuntivo.

Extra Folder Columns

Assegnate 5 su 5 stelle

Simple Patch for RC2 to display folder names properly.

--- chrome/content/main.js.orig 2009-12-08 11:15:35.000000000 +0000
+++ chrome/content/main.js 2009-12-08 11:33:34.000000000 +0000
@@ -11,9 +11,15 @@

switch (aColName) {
case "folderNameCol":
- let text = this._folder.abbreviatedName;
- if (this._useServerName)
- text += " - " + this._folder.server.prettyName;
+ let text;
+ if (this.useServerNameOnly) {
+ text = this._folder.server.prettyName;
+ }
+ else {
+ text = this._folder.abbreviatedName;
+ if (this.addServerName)
+ text += " - " + this._folder.server.prettyName;
+ }

// If the unread column is shown, we don't need to add the count
if (!document.getElementById("folderUnreadCol").hidden)

Questa recensione riguarda una versione precedente (0.3) del componente aggiuntivo.