~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

« back to all changes in this revision

Viewing changes to Tomboy/Tomboy.cs

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-09-22 11:56:36 UTC
  • mfrom: (1.3.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090922115636-2vw47jv5ki4z59ob
Tags: 1.0.0-0ubuntu1
* New upstream release: (LP: #434384)
  - Fix crash when showing Search from panel applet.
  - Redirect complete applet output to ~/.config/tomboy/tomboy-panel.log.
  - Every patch contributor goes in the About dialog now.
  - Add Underline add-in to Windows/Mac builds.
  - WebSync fixes on Windows.
  - Translation updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
308
308
                {
309
309
                        string [] authors = new string [] {
310
310
                                Catalog.GetString ("Primary Development:"),
311
 
                                "\tAlex Graveley <alex@beatniksoftware.com>",
312
 
                                "\tBoyd Timothy <btimothy@gmail.com>",
313
 
                                "\tSandy Armstrong <sanfordarmstrong@gmail.com>",
 
311
                                "\tAlex Graveley (original author)",
 
312
                                "\tBoyd Timothy (retired maintainer)",
 
313
                                "\tSandy Armstrong (maintainer)",
 
314
                                "\t\t<sanfordarmstrong@gmail.com>",
314
315
                                "",
315
316
                                Catalog.GetString ("Contributors:"),
316
 
                                "\tBenjamin Podszun <benjamin.podszun@gmail.com>",
317
 
                                "\tChris Scobell <chris@thescobells.com>",
318
 
                                "\tDavid Trowbridge <trowbrds@gmail.com>",
319
 
                                "\tKevin Kubasik <kevin@kubasik.net>",
320
 
                                "\tRyan Lortie <desrt@desrt.ca>",
321
 
                                "\tSebastian Rittau <srittau@jroger.in-berlin.de>",
322
 
                                "\tStefan Schweizer <steve.schweizer@gmail.com>"
 
317
                                "\tAaron Bockover",
 
318
                                "\tAlexey Nedilko",
 
319
                                "\tAlex Kloss",
 
320
                                "\tAnders Petersson",
 
321
                                "\tAndrew Fister",
 
322
                                "\tBenjamin Podszun",
 
323
                                "\tBuchner Johannes",
 
324
                                "\tChris Scobell",
 
325
                                "\tDave Foster",
 
326
                                "\tDavid Trowbridge",
 
327
                                "\tDoug Johnston",
 
328
                                "\tEveraldo Canuto",
 
329
                                "\tFrederic Crozat",
 
330
                                "\tGabriel de Perthuis",
 
331
                                "\tJakub Steiner",
 
332
                                "\tJames Westby",
 
333
                                "\tJamin Philip Gray",
 
334
                                "\tJan Rüegg",
 
335
                                "\tJay R. Wren",
 
336
                                "\tJeffrey Stedfast",
 
337
                                "\tJeff Tickle",
 
338
                                "\tJerome Haltom",
 
339
                                "\tJoe Shaw",
 
340
                                "\tJohn Anderson",
 
341
                                "\tJohn Carr",
 
342
                                "\tJon Lund Steffensen",
 
343
                                "\tJP Rosevear",
 
344
                                "\tKevin Kubasik",
 
345
                                "\tLaurent Bedubourg",
 
346
                                "\tŁukasz Jernaś",
 
347
                                "\tMark Wakim",
 
348
                                "\tMathias Hasselmann",
 
349
                                "\tMatt Johnston",
 
350
                                "\tMike Mazur",
 
351
                                "\tNathaniel Smith",
 
352
                                "\tPrzemysław Grzegorczyk",
 
353
                                "\tRobert Buchholz",
 
354
                                "\tRobin Sonefors",
 
355
                                "\tRodrigo Moya",
 
356
                                "\tRomain Tartiere",
 
357
                                "\tRyan Lortie",
 
358
                                "\tSebastian Dröge",
 
359
                                "\tSebastian Rittau",
 
360
                                "\tStefan Cosma",
 
361
                                "\tStefan Schweizer",
 
362
                                "\tTommi Asiala",
 
363
                                "\tWouter Bolsterlee",
 
364
                                "\tYonatan Oren"
323
365
                        };
324
366
 
325
367
                        string [] documenters = new string [] {
377
419
                public static bool TrayIconShowing
378
420
                {
379
421
                        get {
380
 
                                tray_icon_showing = tray_icon.IsEmbedded && tray_icon.Visible;
 
422
                                tray_icon_showing = !is_panel_applet && tray_icon != null &&
 
423
                                        tray_icon.IsEmbedded && tray_icon.Visible;
381
424
                                return tray_icon_showing;
382
425
                        }
383
426
                }