From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Julien Danjou Newsgroups: gmane.emacs.devel Subject: [PATCH] Add notifications-specification-version Date: Sat, 11 Sep 2010 12:44:09 +0200 Message-ID: <1284201849-9946-1-git-send-email-julien@danjou.info> References: NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1284201876 13136 80.91.229.12 (11 Sep 2010 10:44:36 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 11 Sep 2010 10:44:36 +0000 (UTC) Cc: Julien Danjou To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 11 12:44:35 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OuNZM-0005hw-9u for ged-emacs-devel@m.gmane.org; Sat, 11 Sep 2010 12:44:28 +0200 Original-Received: from localhost ([127.0.0.1]:47871 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OuNZK-0003AI-So for ged-emacs-devel@m.gmane.org; Sat, 11 Sep 2010 06:44:26 -0400 Original-Received: from [140.186.70.92] (port=37274 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OuNZE-00039p-32 for emacs-devel@gnu.org; Sat, 11 Sep 2010 06:44:21 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OuNZC-0006wL-T4 for emacs-devel@gnu.org; Sat, 11 Sep 2010 06:44:19 -0400 Original-Received: from prometheus.naquadah.org ([212.85.154.174]:38274 helo=mx1.naquadah.org) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OuNZC-0006w2-Ok for emacs-devel@gnu.org; Sat, 11 Sep 2010 06:44:18 -0400 Original-Received: by mx1.naquadah.org (Postfix, from userid 8) id B093E5C16B; Sat, 11 Sep 2010 12:44:16 +0200 (CEST) Original-Received: from keller.adm.naquadah.org (unknown [IPv6:2a01:e35:2e39:e900:222:faff:fe9d:ce44]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.naquadah.org (Postfix) with ESMTPSA id C9BE15C161; Sat, 11 Sep 2010 12:44:14 +0200 (CEST) Original-Received: from jd by keller.adm.naquadah.org with local (Exim 4.72) (envelope-from ) id 1OuNZ8-0002ay-5D; Sat, 11 Sep 2010 12:44:14 +0200 X-Mailer: git-send-email 1.7.1 In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:129965 Archived-At: Signed-off-by: Julien Danjou --- lisp/ChangeLog | 1 + lisp/notifications.el | 3 +++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6b75cde..db26358 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,7 @@ * notifications.el (notifications-notify): Add support for image-path and sound-name. + (notifications-specification-version): Add this variable. 2010-09-11 Michael R. Mauger diff --git a/lisp/notifications.el b/lisp/notifications.el index eaf4e42..9f789e7 100644 --- a/lisp/notifications.el +++ b/lisp/notifications.el @@ -42,6 +42,9 @@ (require 'dbus) +(defconst notifications-specification-version "1.1" + "The version of the Desktop Notifications Specification implemented in Emacs.") + (defconst notifications-application-name "Emacs" "Default application name.") -- 1.7.1