~ubuntu-branches/ubuntu/wily/alarm-clock-applet/wily-proposed

« back to all changes in this revision

Viewing changes to src/ui.c

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2012-06-04 04:38:46 UTC
  • mfrom: (1.1.4) (6.1.4 quantal)
  • Revision ID: package-import@ubuntu.com-20120604043846-vypb90kf6mruyn4w
Tags: 0.3.3-1
* [05ffad2] New upstream bugfix release:
  - Automatically detect daylight savings time (LP: #290733)
  - Let the WM decide the initial position of the list window (LP: #800635)
  - Check that media player was created successfully (LP: #823585)
  - Don't show notifications when alarms are stopped/snoozed (LP: #908636)
  - Update timestamp when type is changed for active alarms (LP: #885059)
  - Use segment seeks to prevent playback delays when looping (LP: #977110)
  - Enable alarm when closing the Edit alarm dialog (LP: #824337)
* [c6f6846] Drop upstreamed Set-appindicator-title.patch
* [6901288] Bump debhelper compat level to 9 for buildflags
* [224a210] Drop redundant clean rule
* [600f7b3] Don't override LDFLAGS directly.
  Use DEB_LDFLAGS_MAINT_APPEND instead to append --as-needed stuff, as per the
  dpkg-buildflags manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
296
296
#ifdef HAVE_APP_INDICATOR
297
297
        applet->app_indicator = app_indicator_new(PACKAGE_NAME, ALARM_ICON,
298
298
                        APP_INDICATOR_CATEGORY_APPLICATION_STATUS);
 
299
#   ifdef HAVE_APP_INDICATOR_0_4_90
 
300
        app_indicator_set_title (applet->app_indicator, _("Alarm Clock"));
 
301
#   endif
299
302
        app_indicator_set_status (applet->app_indicator, APP_INDICATOR_STATUS_ACTIVE);
300
303
        app_indicator_set_attention_icon (applet->app_indicator, TRIGGERED_ICON);
301
304
        app_indicator_set_menu (applet->app_indicator, GTK_MENU (applet->status_menu));