aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* * Update potfiles.0.2.2Jason Conti2012-02-263-8/+9
| | | | | * Bump version to 0.2.2.
* * Emit the clicked signal when the keyboard activates a menuitem.Jason Conti2012-02-261-0/+17
| | | | | | - If using the spacebar, the menu won't hide - If using enter, the menu hides
* * Move the button events to notification menuitem.Jason Conti2012-02-263-88/+69
| | | | | | * Add a clicked event to the notification menuitem. * Drop the old new_notification_menuitem code.
* * Move the notification menuitem to a separate class.Jason Conti2012-02-265-1/+138
|
* * Rename notification_is_volume to notification_is_private.Jason Conti2012-02-263-9/+18
| | | | | | | * Add filters for indicator-sound and brightness notifications. * Strip whitespace leading and trailing whitespace from the summary and body.
* * Update potfiles0.2.1Jason Conti2012-02-254-13/+12
| | | | | * Bump version to 0.2.1
* * Bump version to 0.2.00.2.0Jason Conti2012-02-251-1/+1
|
* * Don't hide the menu when removing a notification.Jason Conti2012-02-251-20/+45
|
* * Remove a notification when clicked. Unfortunately this hides the menuJason Conti2012-02-252-1/+61
| | | | | unless the item is activated with the spacebar, so needs fixing.
* * Implement the clear itemJason Conti2012-02-251-0/+60
| | | | | * Add safety checks to most of the functions
* * Reorganize and comment indicator-notifications.cJason Conti2012-02-251-212/+230
|
* * Add a clear item that also keeps a notification count.Jason Conti2012-02-251-9/+45
| | | | | - Still need to implement the clear action
* * Reintroduce the visible item limit, currently hard-coded to 5Jason Conti2012-02-251-6/+53
|
* * Add notification_is_empty to catch useless notifications such asJason Conti2012-02-253-6/+13
| | | | | brightness and volume, which are not always properly marked.
* Forgot AC_OUTPUT in configure.acJason Conti2012-02-251-0/+2
|
* * Move dev tools to the tools/ directoryJason Conti2012-02-255-4/+3
| | | | | * Missed some extra [] in configure.ac
* * Drop old dbus service file.Jason Conti2012-02-255-195/+39
| | | | | | * Clean up configure.ac * Drop gtk2 build
* * Disable the resize_menu code.Jason Conti2011-09-081-1/+1
|
* * Make sure to unref the dbus-spy when the indicator is disposed.Jason Conti2011-08-291-0/+5
|
* * Switch to gtk_menu_shell_prepend so new messages appear on top.Jason Conti2011-08-291-1/+1
|
* * Simplified the indicator by removing the dbus service. Still needs:Jason Conti2011-08-2913-783/+114
| | | | | | | | | | - Clear button - Message limit * GTK3 is having issues with the multi-line menu items. Adding a bit of a hack to calculate the size of the menu and resize it when an item is added. Still has some problems, but better than before. Will probably cause other issues that will need to be addressed later.
* Revert previous commit, the reposition fix isn't working.Jason Conti2011-08-211-4/+1
|
* * Reposition the menu when it becomes visible, otherwise parts will beJason Conti2011-08-201-1/+4
| | | | | cut off when popped up near the edge of the screen
* * Bump for oneiric ppa release0.1.4Jason Conti2011-08-191-2/+2
|
* * Fix XML service substitution so it works from a separate build directoryJason Conti2011-08-191-4/+4
|
* * Add a WITH_GTK (2, 3) definition to handle some of the minor differences0.1.3Jason Conti2011-08-194-11/+33
| | | | | | | | between gtk2 and 3 * Replace gtk_hbox_new with gtk_box_new in the gtk3 version * GtkLabel has a new (and much nicer) wrapping mechanism - use gtk_label_set_max_width_chars in gtk3 version
* Update libindicator pkg-config names.Jason Conti2011-08-194-21/+24
|
* * Updated testing scripts for new gtk3 indicator.Jason Conti2011-07-022-2/+2
|
* * Building --with-gtk=3 for oneiricJason Conti2011-06-292-6/+7
|
* Modified the logging mechanism in the service. The one I stole from ↵Jason Conti2011-05-271-47/+50
| | | | indicator-applet was inconsistant. Sometimes messages would be logged, sometimes they wouldn't. This time took one from lightdm that just uses stdio, and it seems to work much more consistantly.
* Bumping version and removing some unnecessary dependencies.Jason Conti2011-05-193-17/+7
|
* Have to add the test directory back to Makefile.am or the tarball from make ↵0.1.0Jason Conti2011-05-181-1/+2
| | | | dist fails to configure. (could also have removed the test makefile from configure.ac, but this seemed better)
* Had to prefix the status icons with indicator- because otherwise they can ↵Jason Conti2011-05-184-11/+68
| | | | conflict with the obsolete icons in the recent-notifications package, which I should probably remove.
* Updated the pot file. Not many strings so far.Jason Conti2011-05-183-2/+36
|
* Updating icon path to correct location in preparation for proper install.Jason Conti2011-05-183-2/+7
|
* Checking for, and discarding volume notifications, since they contain no ↵Jason Conti2011-05-173-1/+28
| | | | useful information (which is stupid, why can't they provide a summary (Volume Up/Down) and body (Current volume level X%).
* Adding a timestamp to the messages. Currently sends a timestamp string ↵Jason Conti2011-05-175-32/+61
| | | | across dbus, but ideally it will send an integer, and the indicator can decide how to display it (time ago in words, custom time format, etc).
* Removed the placeholder filter item for now. It serves no purpose with a ↵Jason Conti2011-05-171-17/+28
| | | | limit of 5 items. Added a empty item to signify when the menu has 0 notification, instead of just leaving a blank space.
* Proof of concept complete, should probably add timestamps next.Jason Conti2011-05-162-6/+35
|
* A bit of renaming with the dbusmenu properties.Jason Conti2011-05-163-6/+17
|
* Building the menuitem, now works the same as before. Next comes markup. ↵Jason Conti2011-05-161-0/+13
| | | | Should I markup the text server side or add a property to the dbusmenu item for each field, and build the menuitem client side from the properties?
* Should have checked my syntax errors before that last commit. Fixed now.Jason Conti2011-05-161-4/+4
|
* Adding a new notification menuitem type. It isn't currently a custom ↵Jason Conti2011-05-163-2/+18
| | | | menuitem, but may need to be eventually.
* Update indicator icon to unread when a message is received, and to read when ↵Jason Conti2011-05-154-11/+30
| | | | the menu is hidden.
* Couldn't seem to get a signal when a menu item is added to the dbusmenu, so ↵Jason Conti2011-05-156-3/+297
| | | | adding the interface back from indicator-datetime with a MessageAdded signal to notify the indicator when a notification is added to the menu.
* Loading the read and unread icons when the image is first requested. TODO: ↵Jason Conti2011-05-151-6/+52
| | | | Need to reload them when the icon theme changes.
* Removed the label from the indicator. May add it back later for a message count.Jason Conti2011-05-141-97/+8
|
* Added the icon to the indicator. Currently using a hardcoded path, will grab ↵Jason Conti2011-05-142-0/+31
| | | | from the icon theme later, but need to add the local path to the icon theme for testing.
* Adding gdk pixbuf to the deps for gtk2. Don't know what to use with gtk3 yet.Jason Conti2011-05-141-2/+5
|
* Forgot to add data/icons/Makefile to configure.ac.Jason Conti2011-05-142-1/+3
|