Raymond Camden's Blog Rss

Lighthouse Pro 2.0.4 Released (and the story of the Sithlord's Eye)

9

Posted in ColdFusion | Posted on 06-22-2006 | 3,326 views

Tonight I'm releasing Lighthouse Pro 2.0.4. This has some features that people have been asking for awhile a now. Updates include:

  • I know finally have a "bug id" for each issue. This is done by using a new incrementing ID for bugs, which is unique per project, and still keeping the UUID for the primary key. Note that you must modify your database and run a one time script to get this update working. This new ID is now shown in various places in the UI.

  • Due dates have been added to issues. These are optional dates for an issue to be completed. Right now I don't do much on the UI. I did update the front page to mark overdue bugs, but if folks have other ideas, please feel free to share.

  • Todd Sharp shared some code to modify the emails sent out by Lighthouse Pro. Now the emails use a few headers that Outlook will recognize. (And maybe Thunderbird. I plan on testing that later.) I made a few other changes to the email as well. The subject is now more descriptive (shows the issue and the project).

  • I fixed a few bugs and did a few other small things not really worth mentioning.

As always, you can download Lighthouse Pro from the project page, and donations to the wishlist are appreciated.

So - the Sithlord's Eye: As my readers know, the past 12 months have been crazy for me health wise. I had the poison ivy attack. I had the torn rotator cuff. I had bronchitis. Now I have pink eye. It wouldn't bug me so much if it wasn't my right eye. My left eye is a bit weak so that with the right eye all nice and puffy, I'm operating at like 80% of my normal visual power. My throat feels like I swallowed a few razors and I'm tired all the time. I should be ok by CFUNITED. Worse comes to worse I'll do my three hour preso with a few cups of hot tea, but forgive me if I'm a bit more dim witted then usual and sound like a chain smoker. Oh - and yeah - the eye looks really cool. It's blood red like I'm Darth Maul or something.

Comments

[Add Comment] [Subscribe to Comments]

C'mon, at least post a photo of the eye, huh? ;)
Get well soon !
Get yerself a couple of hot toddy's and you'll be sorted.
A nice, hot lemon tea with honey should get you sorted out in no time at all.
Tom: I took pictures of the poison ivy, I'm not doing this. ;) My wife told me this morning it looks better.

Tom2: Thanks. :)

Andy: What is a hot toddy?

Lola: Trust me, I am. Lots and lots of tea. Outside of the eye, the main issue is my throat so I'm trying to take care of that. You guys don't want to hear me talk for three hours as I sound now.
Ray, make sure you gargle with salt water. An old remedy that really -works-! And take a day (or two) off...you deserve it :-)
Heh, I took off M/T of this week, and with me being gone next week (CFUNITED), I can't take off much more. But U am getting a good 8 hours of sleep a night. Not great rest, but better than my normal.
The basic ingredients to a hot toddy are:
* a dram of whisky (don't blow your single malt on this though)
* boiling water
* teaspoon of honey

And it should be sipped slowly so as to let it do its work soothing your throat.
Thanks for the update Ray.

I've got quite a lot of projects in my list and a big list was becoming annoying so I've changed the layout file to have the following @ line 58 in the layout.cfm file:

<p class="sideBarTitle">Your Projects</p>
<cfset projects = application.projectManager.getProjectsForUser()>
      <form name="projects">
      <select name="myProjectList" OnChange="location.href=projects.myProjectList.options[selectedIndex].value">
          <option selected>Please Select...
          <cfloop query="projects">
             <option value="project_view.cfm?id=#id#">#name#</option>
             <option value="view.cfm?id=0&pid=#id#"> -- Add new Issue</option>
         </cfloop>
      </select>
      </form>

I thought I would share.

[Add Comment] [Subscribe to Comments]