summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Move trunk/libnotify to branches/libnotify/pre-0.3.0.pre-0.3.0Christian Hammond2006-01-110-0/+0
|
* Reference the bug number for the notify-send fix.Christian Hammond2005-11-121-1/+1
|
* - Call notify_icon_new_from_uri() and not notify_icon_new(), since ↵Christian Hammond2005-11-093-2/+12
| | | | | | | notify_icon_new() doesn't actually take parameters. - Fix the help for --type.
* Add applet-critical.png to EXTRA_DIST.Christian Hammond2005-11-072-0/+9
|
* Bump to version 0.2.2 and prepare for release.0.2.2Christian Hammond2005-08-103-5/+11
|
* Hopefully properly grab hint values from the D-BUS message iter in a way ↵Christian Hammond2005-08-101-1/+8
| | | | that will work on AMD64 and PPC.
* Simplify notify-send a little, and nuke tools/test-replace. It doesn't ↵Christian Hammond2005-08-103-38/+13
| | | | belong there.
* Bump to version 0.2.1.90.Christian Hammond2005-08-103-2/+11
|
* Bump to version 0.2.1.Christian Hammond2005-07-283-2/+11
|
* Talk about variants as the dictionary values for hints.Christian Hammond2005-07-282-1/+15
|
* Use a variant type for the hint dictionary values. This let's us actually ↵Christian Hammond2005-07-283-9/+31
| | | | use various data types in D-BUS 0.3x.
* Tyop.Christian Hammond2005-07-281-1/+1
|
* Forgot this ChangeLog entry.. Basically, we're releasing.Christian Hammond2005-07-281-0/+9
|
* Don't send all hint values as strings. Send as integers, booleans, or ↵Christian Hammond2005-07-286-19/+167
| | | | strings, depending on what the user set.
* Support setting boolean hints.Christian Hammond2005-07-283-1/+25
|
* Disable animation support on D-BUS 0.3x, since arrays of arrays of a type ↵Christian Hammond2005-07-282-8/+14
| | | | seems broken.
* - Flush the D-BUS connection queue on uninit so that messages go through and ↵Christian Hammond2005-07-283-1/+11
| | | | | | | so we don't trigger this ugly little warning on D-BUS 0.3x. - Fix a compiler warning on gcc4.
* Actually set the expires flag in the notification handle so we don't just ↵Christian Hammond2005-07-272-1/+9
| | | | kill off all notifications as soon as we create them and exit.
* Handle SIGINT and SIGTERM When raised, we call notify_uninit. notify_uninit ↵Christian Hammond2005-07-272-4/+38
| | | | now checks if there are any non-expiring notifications and closes them. This is a best-effort to preventing stale notifications from a dead process from displaying on the screen. Of course, we can't handle SIGKILL, so we're stuck there.
* Patch (bug #3050) by Duarte Henriques to prevent closing notifications we ↵Christian Hammond2005-07-272-0/+9
| | | | don't own.
* Patch (bug #3734) by Duarte Henriques to provide a convenient way of ↵Christian Hammond2005-07-276-15/+67
| | | | integrating libnotify with the glib mainloop. Modifications by me to make it even easier.
* Actually support our own spec and use the number of seconds until expiration ↵Christian Hammond2005-07-278-7/+20
| | | | instead of current time + number of seconds. That was creating all kinds of problems.
* Compile under D-BUS 0.2x again.Christian Hammond2005-07-272-0/+10
|
* If the handle given in ActionInvoked is not found in the local table of ↵Christian Hammond2005-07-272-0/+12
| | | | handles, return from the ActionInvoked handler. Otherwise, every program using libnotify will crash when a notification is clicked. Oops!
* Fix the key type for the dictionary for hints on D-BUS 0.3x. The ↵Christian Hammond2005-07-172-1/+7
| | | | notification-daemon side is still broken in this regard.
* Fixed a couple of D-BUS 0.3x bugs. Several remain though.Christian Hammond2005-07-173-31/+93
|
* Update the AUTHORs file with our current contributors.Christian Hammond2005-07-122-2/+12
|
* Patch by Richard Hughes to fix make distcheck, and to provide a Fedora Core ↵Christian Hammond2005-07-124-2/+63
| | | | 4 RPM spec file.
* Decrease the wait time for the replacement notification.Christian Hammond2005-07-102-1/+6
|
* Fill in handle->user_data in notify_send_notification_vargMike Hearn2005-07-092-0/+6
|
* - Conditionally build gdk-dependent test apps if we have gdk.Christian Hammond2005-07-045-9/+127
| | | | | - Added a X, Y stress test that will be used to help test accurately positioning the arrows.
* A few things I did on the way home:Christian Hammond2005-07-0114-11/+203
| | | | | | - Added support for hints in the API. - Don't install the test programs during make install.
* Be a little better at not crashing. Just a bit better. There's still another ↵Christian Hammond2005-06-202-0/+8
| | | | crash I'm trying to track down.
* Close the right container in D-BUS 0.3x.Christian Hammond2005-06-202-1/+6
|
* Add dbus-compat.h.Christian Hammond2005-06-203-0/+151
|
* Add support for compiling under D-BUS 0.3x. Actually running has not yet ↵Christian Hammond2005-06-203-33/+114
| | | | been tested!
* Updated for the 0.6 notification spec.Christian Hammond2005-04-012-16/+14
|
* - Removed all references to NIL, and explained briefly how each parameter ↵Christian Hammond2005-04-012-23/+45
| | | | | | | can be made empty. - Bumped to version 0.6.
* spaces -> tabsMike Hearn2004-11-087-32/+32
|
* spaces -> tabsMike Hearn2004-11-081-0/+1
|
* Move our TODO list to the Doxygen @todo commands, so we'll get it in a nice ↵Christian Hammond2004-11-062-3/+8
| | | | little page of its own in the API docs.
* Move the emacs mode string out of the Doxygen comment and into its own.Christian Hammond2004-11-062-1/+8
|
* Quiet svn a bit.Christian Hammond2004-11-060-0/+0
|
* Add a Doxyfile.in and update things so we can get doxygen docs.Christian Hammond2004-11-065-1/+1091
|
* Use glib's memory allocation stuff instead of libc's.Christian Hammond2004-11-042-8/+16
|
* Patch from Mike Hearn to do a bunch of stuff, like handling icons and ↵Christian Hammond2004-11-045-22/+163
| | | | animations better.
* Fix make distcheck.Christian Hammond2004-11-033-2/+11
|
* - Added a "suppress-sound" hint.Christian Hammond2004-10-022-4/+39
| | | | | | | - Added a "sound" capability. - Renamed the "soundfile" hint to "sound-file." - Bumped to version 0.5.
* Version 0.4.Christian Hammond2004-09-302-5/+8
|
* Don't flush the D-BUS connection, and make sure we disconnect from it.Christian Hammond2004-09-303-2/+11
|