~ted/ubuntu/lucid/tomboy/with-patch

« back to all changes in this revision

Viewing changes to Tomboy/Addins/NoteOfTheDay/NoteOfTheDayApplicationAddin.cs

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-01-15 11:32:52 UTC
  • mfrom: (1.1.31 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20080115113252-p59wg7nqkl6vcg7a
Tags: 0.9.4-0ubuntu1
* New upstream release (LP: #181798)
  - Fix crash during note deletion 
  - Fix null reference exception 
  - Fix mnemonics in sync preferences dialog 
  - Fix fuse mount timeout for sync 
  - New port option for SSH sync 
  - New multi-select notes support in Search All Notes window
  - New config dialog for Insert Timestamp Add-in 
  - New gconf preference, middle-click paste on Tomboy icon
  - New gconf preference, disable ESC closing notes 
  - New paragraph within a bullet with SHIFT + ENTER
  - New bug numbers as links in Export to HTML 
  - New notebook notes can be created off notebook's context menu.
  - New sketching add-in (still incomplete, --enable-sketching)
  - New "Unfiled Notes" item to notebook list 
  - New drag note to "Unfiled Notes" to remove from notebook 
 * debian/tomboy.menu: updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
                        Note notd = NoteOfTheDay.GetNoteByDate (manager, DateTime.Today);
23
23
                        if (notd == null) {
24
24
                                NoteOfTheDay.CleanupOld (manager);
25
 
                                
 
25
 
26
26
                                // Create a new NotD if the day has changed
27
27
                                NoteOfTheDay.Create (manager, DateTime.Now);
28
28
                        }
51
51
                                timeout.Cancel();
52
52
                                timeout = null;
53
53
                        }
54
 
                        
 
54
 
55
55
                        initialized = false;
56
56
                }
57
 
                
 
57
 
58
58
                public override bool Initialized
59
59
                {
60
 
                        get { return initialized; }
 
60
                        get {
 
61
                                return initialized;
 
62
                        }
61
63
                }
62
64
        }
63
65
}