~ubuntu-branches/ubuntu/jaunty/tomboy/jaunty

« back to all changes in this revision

Viewing changes to Tomboy/Tomboy.cs

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2009-02-17 03:08:19 UTC
  • mfrom: (1.1.46 upstream)
  • Revision ID: james.westby@ubuntu.com-20090217030819-87k5mkna0w5tvvqf
Tags: 0.13.5-0ubuntu1
* New upstream release
  - Removed bundled Mono.Addins. Mono.Addins is
    now a hard dependency.
  - Update printing to use Gtk.Print (#512369, Benjamin Podszun)
    Still buggy.
  - Fix multi-page printing of exported note HTML (#548198)
  - Fix crash when clicking link and browser not set (#569639).
  - 64-bit Windows support (#558272, Jay R. Wren).
  - Search window position saved on Windows/Mac (#559663).
  - Fix lingering tray icon in Windows (#569709, Benjamin Podszun).
  - Fix bug with font settings (#559724, Benjamin Podszun).
  - Mac MonoDevelop solution now easier to build (Doug Johnston et al).
  - Other fixes: #562846 (James Westby) #570917, #570918.
  - Additional updates to note printing (#512369, #572024
    , Benjamin Podszun).
  - Windows installer now requires Novell's GTK# >= 2.12.8 (#569324).
  - Increase/Decrease Indent shortcuts now appear in menu
    (#570334, Benjamin Podszun).
  - No longer writes to disk every 40 seconds (#514434).
  - Fixes to note linking (#323845, Florian).
  - Add GConf preference for auto-accepting SSL Certs in 
    WebDAV sync (#531364).
  - After succcessfully configuring sync, offer to perform 
    first sync (#553079).
* debian/control:
  - Use libgconf2.24-cil and libgnome2.24-cil (LP: #314516)
  - Build-dep on libgnomepanel2.24-cil
  - Remove Build-dep on libgnomeprint and libgnomeprintui
  - Add Vcs headers
* .bzr-builddeb/default.conf: added
* debian/patches/02_configurable_compiler.patch:
  - Removed, merged upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
                        }
44
44
#endif // ENABLE_DBUS || WIN32
45
45
 
46
 
                        Initialize ("tomboy", "Tomboy", "tomboy", args);
 
46
                        Initialize ("tomboy", "tomboy", "tomboy", args);
47
47
 
48
48
                        // Add private icon dir to search path
49
49
                        icon_theme = Gtk.IconTheme.Default;
84
84
                                am ["QuitTomboyAction"].Visible = false;
85
85
 
86
86
                                RegisterPanelAppletFactory ();
 
87
                                Logger.Log ("All done.  Ciao!");
 
88
                                Exit (0);
87
89
                        } else {
88
90
                                RegisterSessionManagerRestart (
89
91
                                        Environment.GetEnvironmentVariable ("TOMBOY_WRAPPER_PATH"),
300
302
                        about.Comments = Catalog.GetString ("A simple and easy to use desktop " +
301
303
                                                            "note-taking application.");
302
304
                        Gtk.AboutDialog.SetUrlHook (delegate (Gtk.AboutDialog dialog, string link) {
303
 
                                Services.NativeApplication.OpenUrl (link);
 
305
                                try {
 
306
                                        Services.NativeApplication.OpenUrl (link);
 
307
                                } catch (Exception e) {
 
308
                                        GuiUtils.ShowOpeningLocationError (dialog, link, e.Message);
 
309
                                }
304
310
                        }); 
305
311
                        about.Website = Defines.TOMBOY_WEBSITE;
306
312
                        about.WebsiteLabel = Catalog.GetString("Homepage");