Colin Guthrie

关于我

开发者信息
名称 Colin Guthrie
注册时间 March 5, 2007
开发的附加组件数量 0 个附加组件
开发的附加组件平均得分 尚无评分

我所发表的评价

Bugmail

评分4星,满分5星

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

Extra Folder Columns

评分5星,满分5星

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

这个评论是针对附加组件的一个早期版本的(1.1.3)。  对这个附加组件,此用户曾发表过1个评价

Extra Folder Columns

评分5星,满分5星

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)

这个评论是针对附加组件的一个早期版本的(0.3)。