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 13:07:07 +0200 Message-ID: <1284203228-11396-1-git-send-email-julien@danjou.info> References: NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1284203246 17315 80.91.229.12 (11 Sep 2010 11:07:26 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 11 Sep 2010 11:07:26 +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 13:07:23 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 1OuNvW-0004FQ-RI for ged-emacs-devel@m.gmane.org; Sat, 11 Sep 2010 13:07:23 +0200 Original-Received: from localhost ([127.0.0.1]:50525 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OuNvW-0003Bz-0q for ged-emacs-devel@m.gmane.org; Sat, 11 Sep 2010 07:07:22 -0400 Original-Received: from [140.186.70.92] (port=34402 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OuNvQ-0003Bs-QB for emacs-devel@gnu.org; Sat, 11 Sep 2010 07:07:17 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OuNvP-0001oD-ES for emacs-devel@gnu.org; Sat, 11 Sep 2010 07:07:16 -0400 Original-Received: from prometheus.naquadah.org ([212.85.154.174]:44469 helo=mx1.naquadah.org) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OuNvP-0001o6-A6 for emacs-devel@gnu.org; Sat, 11 Sep 2010 07:07:15 -0400 Original-Received: by mx1.naquadah.org (Postfix, from userid 8) id DBB415C16B; Sat, 11 Sep 2010 13:07:13 +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 032EF5C113; Sat, 11 Sep 2010 13:07:12 +0200 (CEST) Original-Received: from jd by keller.adm.naquadah.org with local (Exim 4.72) (envelope-from ) id 1OuNvL-0002yQ-5J; Sat, 11 Sep 2010 13:07:11 +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:129970 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..68db58e 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.") + (defconst notifications-application-name "Emacs" "Default application name.") -- 1.7.1