Merge lp:~macslow/unity/phablet-support-for-interactive-confirmation-notifications into lp:unity/phablet

Proposed by Mirco Müller
Status: Work in progress
Proposed branch: lp:~macslow/unity/phablet-support-for-interactive-confirmation-notifications
Merge into: lp:unity/phablet
Prerequisite: lp:~macslow/unity/phablet-notification-renderer
Diff against target: 742 lines (+524/-25)
17 files modified
Notifications/Notification.qml (+76/-12)
Notifications/Notifications.qml (+24/-0)
Notifications/graphics/notification-audio-next.svg (+30/-0)
Notifications/graphics/notification-audio-play.svg (+26/-0)
Notifications/graphics/notification-audio-previous.svg (+30/-0)
Notifications/graphics/notification-audio-volume-high.svg (+31/-0)
Notifications/graphics/notification-audio-volume-low.svg (+14/-0)
Notifications/graphics/notification-audio-volume-medium.svg (+14/-0)
Notifications/graphics/notification-audio-volume-muted.svg (+21/-0)
Notifications/graphics/notification-audio-volume-off.svg (+14/-0)
Notifications/graphics/notification-device-eject.svg (+26/-0)
Notifications/graphics/notification-display-brightness-full.svg (+24/-0)
Notifications/graphics/notification-display-brightness-high.svg (+17/-0)
Notifications/graphics/notification-display-brightness-low.svg (+17/-0)
Notifications/graphics/notification-display-brightness-medium.svg (+17/-0)
Notifications/graphics/notification-display-brightness-off.svg (+17/-0)
tests/qmluitests/tst_NotificationRenderer.qml (+126/-13)
To merge this branch: bzr merge lp:~macslow/unity/phablet-support-for-interactive-confirmation-notifications
Reviewer Review Type Date Requested Status
Unity Team Pending
Review via email: mp+156808@code.launchpad.net

Commit message

Adding support for interactive and confirmation notifications.

Description of the change

Adding support for interactive and confirmation notifications.

To post a comment you must log in.
545. By Mirco Müller

Added more assets for tests

546. By Mirco Müller

Add a few more tests for confirmation notifications

547. By Mirco Müller

Use a regular Image-item for the avatar-icon for the moment... needs to adapt to existence of alpha-channel in the icon-file in the end

Unmerged revisions

547. By Mirco Müller

Use a regular Image-item for the avatar-icon for the moment... needs to adapt to existence of alpha-channel in the icon-file in the end

546. By Mirco Müller

Add a few more tests for confirmation notifications

545. By Mirco Müller

Added more assets for tests

544. By Mirco Müller

Added tests and support for interactive notifications, added first tests and support for confirmation notifications

543. By Mirco Müller

Added some assets for notification-qmltests

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Notifications/Notification.qml'
2--- Notifications/Notification.qml 2013-04-04 07:15:29 +0000
3+++ Notifications/Notification.qml 2013-04-04 07:15:30 +0000
4@@ -25,11 +25,20 @@
5 property alias body: bodyLabel.text
6 property var actions
7 property bool snapDecision: type == "Notifications.Type.SnapDecision"
8+ property bool confirmation: type == "Notifications.Type.Confirmation"
9 property alias secondaryIconSource: secondaryIcon.source
10+ property bool iconOnly: (confirmation && (value == -2))
11
12 width: parent.width
13 height: childrenRect.height + units.gu (1)
14- Behavior on opacity {NumberAnimation{}}
15+
16+ MouseArea {
17+ id: interactiveArea
18+
19+ anchors.fill: parent
20+ visible: type == "Notifications.Type.Interactive"
21+ onClicked: print("clicked attached action with id: \"" + actions.get(0).action_id + "\"")
22+ }
23
24 UbuntuShape {
25 id: background
26@@ -39,7 +48,7 @@
27 opacity: 0.85
28 }
29
30- UbuntuShape {
31+ /*UbuntuShape {
32 id: icon
33
34 anchors {
35@@ -49,12 +58,66 @@
36 topMargin: units.gu(1)
37 }
38
39- width: units.gu (6)
40- height: units.gu (6)
41+ width: units.gu(6)
42+ height: units.gu(6)
43 image: Image {
44 id: avatarIcon
45 fillMode: Image.PreserveAspectCrop
46 }
47+ }*/
48+
49+ Image {
50+ id: avatarIcon
51+
52+ anchors.centerIn: iconOnly ? parent : 0
53+
54+ anchors {
55+ left: parent.left
56+ leftMargin: units.gu(1)
57+ top: parent.top
58+ topMargin: units.gu(1)
59+ }
60+
61+ visible: confirmation
62+ fillMode: Image.PreserveAspectCrop
63+ width: units.gu(6)
64+ height: units.gu(6)
65+ }
66+
67+ Item {
68+ id: valueBar
69+
70+ anchors {
71+ left: avatarIcon.right
72+ leftMargin: units.gu(1)
73+ top: avatarIcon.top
74+ topMargin: units.gu(2.5)
75+ right: parent.right
76+ rightMargin: units.gu(1)
77+ }
78+
79+ visible: (confirmation && !iconOnly)
80+ height: units.gu(1)
81+
82+ Row {
83+ anchors.fill: parent
84+
85+ Image {
86+ id: lowerPart
87+
88+ source: "graphics/value-bar-on.png"
89+ width: parent.width * (value/100)
90+ height: parent.height
91+ }
92+
93+ Image {
94+ id: upperPart
95+
96+ source: "graphics/value-bar-off.png"
97+ width: parent.width - lowerPart.width
98+ height: parent.height
99+ }
100+ }
101 }
102
103 Image {
104@@ -68,8 +131,8 @@
105 }
106
107 visible: source
108- width: units.gu (2)
109- height: units.gu (2)
110+ width: units.gu(2)
111+ height: units.gu(2)
112 fillMode: Image.PreserveAspectCrop
113 }
114
115@@ -108,18 +171,19 @@
116 }
117
118 Row {
119- spacing: units.gu (1)
120+ spacing: units.gu(1)
121
122 parent: notification
123 layoutDirection: Qt.RightToLeft
124+ visible: snapDecision
125
126 anchors {
127 left: parent.left
128- leftMargin: units.gu (1)
129+ leftMargin: units.gu(1)
130 top: (icon.height >= summaryLabel.height + bodyLabel.height) ? icon.bottom : bodyLabel.bottom
131- topMargin: snapDecision ? units.gu (1) : 0
132+ topMargin: snapDecision ? units.gu(1) : 0
133 right: parent.right
134- rightMargin: units.gu (1)
135+ rightMargin: units.gu(1)
136 }
137
138 Repeater {
139@@ -129,12 +193,12 @@
140 id: button
141
142 color: Positioner.isFirstItem ? "#d85317" : "#cdcdcb"
143+ visible: snapDecision
144 width: (parent.width - units.gu(1)) / 2
145- height: units.gu (4)
146+ height: units.gu(4)
147 text: action_label
148 onClicked: print("clicked " + action_id)
149 }
150 }
151 }
152 }
153-
154
155=== modified file 'Notifications/Notifications.qml'
156--- Notifications/Notifications.qml 2013-04-04 07:15:29 +0000
157+++ Notifications/Notifications.qml 2013-04-04 07:15:30 +0000
158@@ -27,6 +27,10 @@
159 queue.append(notification)
160 }
161
162+ function clearNotification() {
163+ queue.clear()
164+ }
165+
166 ListModel {
167 id: queue
168 }
169@@ -52,5 +56,25 @@
170 secondaryIconSource: model.secondaryIcon
171 actions: model.actions
172 }
173+
174+ add: Transition {
175+ NumberAnimation {
176+ property: "opacity";
177+ from: 0;
178+ to: 1;
179+ duration: 250;
180+ easing.type: Easing.InOutQuad;
181+ }
182+ }
183+
184+ remove: Transition {
185+ NumberAnimation {
186+ property: "opacity";
187+ from: 1;
188+ to: 0;
189+ duration: 250;
190+ easing.type: Easing.InOutQuad;
191+ }
192+ }
193 }
194 }
195
196=== added file 'Notifications/graphics/notification-audio-next.svg'
197--- Notifications/graphics/notification-audio-next.svg 1970-01-01 00:00:00 +0000
198+++ Notifications/graphics/notification-audio-next.svg 2013-04-04 07:15:30 +0000
199@@ -0,0 +1,30 @@
200+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
201+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
202+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 45.662 48" xml:space="preserve" height="48" width="48" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 45.662 48"><metadata id="metadata266"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata>
203+<g id="Layer_2">
204+ <g id="g238" opacity=".3">
205+ <g id="g240">
206+ <path id="path242" d="m42.355 0.001h-7.722c-1.822 0-3.307 1.345-3.307 2.998v42.001c0 1.652 1.484 2.998 3.307 2.998h7.722c1.823 0 3.307-1.346 3.307-2.998v-42.001c0-1.653-1.484-2.998-3.307-2.998zm1.103 44.999c0 0.553-0.493 1-1.103 1h-7.721c-0.609 0-1.103-0.447-1.103-1v-42c0-0.552 0.493-1 1.103-1h7.721c0.609 0 1.103 0.448 1.103 1v42zm-38.24-44.174c-0.882-0.826-2.197-1.06-3.332-0.577-1.13 0.477-1.873 1.581-1.886 2.812v41.861c0.013 1.245 0.752 2.348 1.884 2.832 1.146 0.48 2.456 0.244 3.352-0.595l22.745-20.869c0.495-0.449 0.836-1.065 0.958-1.728 0.032-0.17 0.05-0.368 0.05-0.567 0-0.876-0.374-1.713-1.03-2.298l-22.741-20.871zm21.684 23.368c-0.041 0.224-0.155 0.427-0.323 0.58l-22.764 20.886c-0.299 0.282-0.738 0.361-1.117 0.2-0.379-0.16-0.626-0.53-0.629-0.939v-41.84c0.003-0.411 0.251-0.778 0.63-0.939s0.818-0.083 1.117 0.199l22.763 20.887c0.27 0.244 0.393 0.61 0.323 0.966z"/>
207+ </g>
208+ </g>
209+</g>
210+<g id="Layer_1">
211+ <g id="g245">
212+ <linearGradient id="SVGID_1_" y2="-0.638" gradientUnits="userSpaceOnUse" x2="66.912" gradientTransform="matrix(-1.1029 0 0 1 82.355 0)" y1="48.662" x1="41.105">
213+ <stop id="stop248" stop-color="#9B9B9B" offset="0"/>
214+ <stop id="stop250" stop-color="#ECECEC" offset="1"/>
215+ </linearGradient>
216+ <path id="path252" fill="url(#SVGID_1_)" d="m33.532 45v-42c0-0.552 0.493-1 1.103-1h7.721c0.609 0 1.103 0.448 1.103 1v42c0 0.553-0.493 1-1.103 1h-7.721c-0.61 0-1.103-0.447-1.103-1zm-31.463-0.079v-41.84c0.003-0.411 0.251-0.778 0.63-0.939s0.818-0.083 1.117 0.199l22.763 20.887c0.271 0.244 0.394 0.61 0.323 0.966-0.041 0.224-0.155 0.427-0.323 0.58l-22.764 20.886c-0.299 0.282-0.738 0.361-1.117 0.2-0.378-0.16-0.626-0.53-0.629-0.939z"/>
217+ </g>
218+</g>
219+<g id="Layer_3">
220+</g>
221+<g id="Layer_4">
222+ <path id="path256" opacity=".4" fill="#a8a8a8" d="m2.069 44.921v-0.019c0.26 0 0.516-0.087 0.711-0.271l22.763-20.888c0.169-0.152 0.283-0.356 0.323-0.579 0.049-0.242 0-0.485-0.115-0.694l0.827 0.758c0.271 0.244 0.394 0.61 0.323 0.966-0.041 0.224-0.155 0.427-0.323 0.58l-22.763 20.886c-0.299 0.282-0.738 0.361-1.117 0.2-0.378-0.16-0.626-0.53-0.629-0.939z"/>
223+ <path id="path258" opacity=".4" fill="#fff" d="m33.532 45v-42c0-0.552 0.493-1 1.103-1h7.721c0.609 0 1.103 0.448 1.103 1h-7.721c-0.609 0-1.103 0.448-1.103 1v42c-0.61 0-1.103-0.447-1.103-1z"/>
224+</g>
225+<g id="Layer_5">
226+ <path id="path3302_2_" opacity=".3" fill="#fff" d="m3.622 45.79c-0.279 0.163-0.63 0.193-0.938 0.063-0.379-0.16-0.611-0.523-0.614-0.933v-41.839c0.002-0.411 0.235-0.772 0.614-0.934 0.308-0.129 0.659-0.098 0.938 0.065-0.32 0.181-0.515 0.499-0.518 0.869v41.84c0.003 0.37 0.198 0.689 0.518 0.869z"/>
227+ <rect id="rect3406_2_" opacity=".3" height="42" width="1.103" y="3" x="42.355" enable-background="new " fill="#8c8c8c"/>
228+</g>
229+</svg>
230
231=== added file 'Notifications/graphics/notification-audio-play.svg'
232--- Notifications/graphics/notification-audio-play.svg 1970-01-01 00:00:00 +0000
233+++ Notifications/graphics/notification-audio-play.svg 2013-04-04 07:15:30 +0000
234@@ -0,0 +1,26 @@
235+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
236+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
237+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 28.804 47.999" xml:space="preserve" height="47.999" width="48" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 28.804 47.999"><metadata id="metadata262"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata>
238+<g id="Layer_4">
239+ <g id="g238" opacity=".3">
240+ <g id="g240">
241+ <path id="path242" d="m28.75 23.439c-0.119-0.652-0.458-1.254-0.935-1.686l-22.698-20.926c-0.565-0.534-1.306-0.827-2.084-0.827-0.41 0-0.811 0.081-1.184 0.241-1.119 0.473-1.843 1.56-1.849 2.781v41.961c0.006 1.205 0.729 2.292 1.845 2.773 0.377 0.16 0.778 0.241 1.188 0.241 0.778 0 1.517-0.293 2.065-0.811l22.7-20.929c0.789-0.71 1.152-1.797 0.952-2.818zm-2.29 1.334l-22.718 20.943c-0.298 0.282-0.736 0.361-1.114 0.199-0.378-0.161-0.626-0.53-0.628-0.941v-41.951c0.003-0.411 0.25-0.781 0.628-0.942s0.816-0.082 1.114 0.2l22.718 20.944c0.169 0.153 0.282 0.357 0.323 0.58 0.071 0.357-0.052 0.724-0.323 0.968z"/>
242+ </g>
243+ </g>
244+</g>
245+<g id="Layer_2">
246+ <linearGradient id="path3235_4_" y2="-93.478" gradientUnits="userSpaceOnUse" x2="-125.9" gradientTransform="matrix(0 1 1 0 88.919 127.54)" y1="-68.478" x1="-82.601">
247+ <stop id="stop246" stop-color="#8A8A8A" offset="0"/>
248+ <stop id="stop248" stop-color="#fff" offset="1"/>
249+ </linearGradient>
250+ <path id="path3235_1_" fill="url(#path3235_4_)" d="m26.783 23.805c-0.041-0.223-0.154-0.427-0.323-0.58l-22.718-20.944c-0.298-0.282-0.736-0.361-1.114-0.2s-0.626 0.531-0.628 0.942v41.951c0.003 0.411 0.25 0.78 0.628 0.941 0.378 0.162 0.816 0.083 1.114-0.199l22.718-20.943c0.271-0.244 0.394-0.611 0.323-0.968z"/>
251+</g>
252+<g id="Layer_3">
253+ <g id="g252" opacity=".2">
254+ <g id="g254">
255+ <path id="path256" fill="#fff" d="m26.783 23.805c-0.041-0.223-0.154-0.427-0.323-0.58l-22.718-20.944c-0.298-0.282-0.736-0.361-1.114-0.2s-0.626 0.531-0.628 0.942v41.951c0.003 0.411 0.25 0.78 0.628 0.941 0.378 0.162 0.816 0.083 1.114-0.199l22.718-20.943c0.271-0.244 0.394-0.611 0.323-0.968zm-23.72 21.176l-0.029 0.019c-0.004 0-0.008-0.002-0.01-0.002l-0.025-41.975 22.782 20.938-22.718 21.02z"/>
256+ </g>
257+ </g>
258+ <path id="path3302_2_" fill-opacity=".14850" fill="#fff" d="m3.548 2.152c-0.278-0.164-0.629-0.194-0.935-0.065-0.379 0.162-0.611 0.525-0.613 0.936v41.951c0.003 0.411 0.235 0.774 0.613 0.936 0.307 0.13 0.657 0.1 0.936-0.064-0.318-0.181-0.513-0.5-0.516-0.871v-41.952c0.002-0.371 0.197-0.69 0.515-0.871z"/>
259+</g>
260+</svg>
261
262=== added file 'Notifications/graphics/notification-audio-previous.svg'
263--- Notifications/graphics/notification-audio-previous.svg 1970-01-01 00:00:00 +0000
264+++ Notifications/graphics/notification-audio-previous.svg 2013-04-04 07:15:30 +0000
265@@ -0,0 +1,30 @@
266+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
267+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
268+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 45.661 48" xml:space="preserve" height="48" width="48" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 45.661 48"><metadata id="metadata266"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata>
269+<g id="Layer_2">
270+ <g id="g238" opacity=".3">
271+ <g id="g240">
272+ <path id="path242" d="m11.028 0.002h-7.721c-1.823 0-3.307 1.345-3.307 2.998v42c0 1.652 1.484 2.998 3.307 2.998h7.722c1.823 0 3.307-1.346 3.307-2.998v-42c-0.001-1.653-1.484-2.998-3.308-2.998zm1.103 44.998c0 0.553-0.493 1-1.103 1h-7.72c-0.609 0-1.103-0.447-1.103-1v-42c0-0.552 0.493-1 1.103-1h7.721c0.609 0 1.103 0.448 1.103 1v42h-0.001zm31.646-44.754c-1.146-0.48-2.456-0.244-3.352 0.595l-22.744 20.869c-0.495 0.449-0.836 1.065-0.958 1.728-0.032 0.17-0.05 0.368-0.05 0.567 0 0.876 0.374 1.713 1.03 2.298l22.74 20.87c0.882 0.827 2.196 1.061 3.332 0.577 1.13-0.477 1.873-1.581 1.886-2.812v-41.86c-0.013-1.245-0.752-2.348-1.884-2.832zm-0.185 44.672c-0.003 0.411-0.25 0.778-0.629 0.939s-0.818 0.083-1.117-0.199l-22.763-20.886c-0.271-0.244-0.394-0.61-0.323-0.966 0.041-0.224 0.155-0.427 0.323-0.58l22.763-20.886c0.299-0.282 0.738-0.361 1.117-0.2 0.379 0.16 0.626 0.53 0.629 0.939v41.839z"/>
273+ </g>
274+ </g>
275+</g>
276+<g id="Layer_1">
277+ <g id="g245">
278+ <linearGradient id="SVGID_1_" y2="-1.113" gradientUnits="userSpaceOnUse" x2="39.71" gradientTransform="translate(-31.328)" y1="49.096" x1="68.698">
279+ <stop id="stop248" stop-color="#9B9B9B" offset="0"/>
280+ <stop id="stop250" stop-color="#ECECEC" offset="1"/>
281+ </linearGradient>
282+ <path id="path252" fill="url(#SVGID_1_)" d="m2.205 45v-42c0-0.552 0.493-1 1.103-1h7.721c0.609 0 1.103 0.448 1.103 1v42c0 0.553-0.493 1-1.103 1h-7.721c-0.61 0-1.103-0.447-1.103-1zm41.387-41.921v41.839c-0.003 0.411-0.25 0.778-0.629 0.939s-0.818 0.083-1.117-0.199l-22.763-20.886c-0.271-0.244-0.394-0.61-0.323-0.966 0.041-0.224 0.155-0.427 0.323-0.58l22.763-20.886c0.299-0.282 0.738-0.361 1.117-0.2 0.379 0.16 0.626 0.53 0.629 0.939z"/>
283+ </g>
284+</g>
285+<g id="Layer_3">
286+</g>
287+<g id="Layer_4" fill="#fff">
288+ <path id="path256" opacity=".4" d="m43.592 3.079v0.019c-0.26 0-0.516 0.087-0.711 0.271l-22.763 20.888c-0.169 0.152-0.283 0.356-0.323 0.579-0.049 0.242 0 0.485 0.115 0.694l-0.827-0.758c-0.271-0.244-0.394-0.61-0.323-0.966 0.041-0.224 0.155-0.427 0.323-0.58l22.763-20.886c0.299-0.282 0.738-0.361 1.117-0.2 0.379 0.16 0.626 0.53 0.629 0.939z"/>
289+ <path id="path258" opacity=".4" d="m2.205 45v-42c0-0.552 0.493-1 1.103-1h7.721c0.609 0 1.103 0.448 1.103 1h-7.722c-0.609 0-1.102 0.449-1.102 1v42c-0.61 0-1.103-0.447-1.103-1z"/>
290+</g>
291+<g id="Layer_5">
292+ <path id="path3302_2_" opacity=".3" fill="#808080" d="m42.04 2.21c0.278-0.163 0.63-0.193 0.938-0.063 0.379 0.16 0.611 0.523 0.614 0.933v41.839c-0.003 0.411-0.235 0.772-0.614 0.934-0.308 0.129-0.659 0.099-0.938-0.064 0.319-0.181 0.515-0.499 0.518-0.869v-41.841c-0.003-0.37-0.199-0.689-0.518-0.869z"/>
293+ <rect id="rect3406_2_" opacity=".3" height="42" width="1.103" y="3" x="11.028" enable-background="new " fill="#8c8c8c"/>
294+</g>
295+</svg>
296
297=== added file 'Notifications/graphics/notification-audio-volume-high.svg'
298--- Notifications/graphics/notification-audio-volume-high.svg 1970-01-01 00:00:00 +0000
299+++ Notifications/graphics/notification-audio-volume-high.svg 2013-04-04 07:15:30 +0000
300@@ -0,0 +1,31 @@
301+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
302+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
303+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 45.758" xml:space="preserve" height="48" width="47.998" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 47.998 45.758"><metadata id="metadata267"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata>
304+<g id="Layer_3">
305+ <g id="g238" opacity=".3">
306+ <g id="g240">
307+ <path id="path242" d="m39.414 1.7l-0.869-0.91c-0.449-0.503-1.098-0.79-1.781-0.79-0.633 0-1.25 0.256-1.699 0.703l-0.926 0.931-1.031 1.03-0.881 0.881c-0.383 0.382-0.609 0.867-0.678 1.372-0.545 0.062-1.059 0.31-1.428 0.689l-0.914 0.912-0.969 0.97-0.859 0.858c-0.391 0.392-0.621 0.885-0.688 1.395-0.529 0.06-1.025 0.293-1.432 0.689l-0.878 0.883-0.862 0.862-0.807 0.807c-0.916 0.914-0.945 2.375-0.08 3.313l0.768 0.846c1.539 1.696 2.356 3.681 2.36 5.734-0.004 2.061-0.821 4.046-2.362 5.745l-0.756 0.831c-0.875 0.951-0.846 2.412 0.07 3.326l0.803 0.803 0.436 0.438 0.431 0.431 0.9 0.901c0.387 0.378 0.879 0.609 1.406 0.669 0.066 0.51 0.297 1.003 0.691 1.396l0.855 0.853 0.969 0.972 0.916 0.916c0.383 0.382 0.889 0.625 1.426 0.688 0.068 0.507 0.295 0.994 0.682 1.374l0.877 0.875 1.035 1.035 0.928 0.929c0.453 0.454 1.057 0.703 1.699 0.703h0.043c0.656-0.012 1.281-0.293 1.699-0.746l0.906-0.956c5.535-5.832 8.584-13.354 8.584-21.193 0-7.816-3.049-15.33-8.584-21.165zm-11.31 31.283l-0.844 0.92c-0.074 0.08-0.18 0.129-0.289 0.131h-0.008c-0.107 0-0.211-0.043-0.287-0.117l-0.881-0.883-0.863-0.863-0.807-0.807c-0.152-0.152-0.158-0.398-0.012-0.557l0.766-0.844c1.949-2.146 2.875-4.619 2.878-7.083-0.004-2.465-0.93-4.938-2.878-7.084l-0.766-0.843c-0.146-0.16-0.141-0.405 0.012-0.558l0.807-0.806c0.345-0.345 0.517-0.518 0.863-0.862l0.881-0.882c0.078-0.078 0.186-0.121 0.295-0.119s0.215 0.05 0.289 0.131l0.844 0.919c2.682 2.918 4.068 6.495 4.068 10.086v0.003 0.015c0 3.593-1.381 7.177-4.068 10.103zm4.896 4.803l-0.885 0.945c-0.074 0.08-0.18 0.127-0.289 0.129h-0.006c-0.107 0-0.211-0.043-0.287-0.119l-0.916-0.916c-0.387-0.387-0.58-0.58-0.967-0.969l-0.857-0.856c-0.154-0.154-0.158-0.402-0.01-0.561l0.824-0.887c3.184-3.42 4.742-7.545 4.744-11.667-0.002-4.129-1.559-8.258-4.742-11.68l-0.826-0.886c-0.148-0.16-0.145-0.407 0.01-0.562l0.857-0.855c0.387-0.387 0.58-0.581 0.967-0.969l0.918-0.916c0.076-0.078 0.182-0.12 0.291-0.119 0.109 0.002 0.215 0.048 0.289 0.128l0.885 0.947c4 4.268 6.033 9.583 6.033 14.899v0.015c0 5.317-2.033 10.631-6.033 14.899zm4.963 4.894l-0.904 0.955c-0.074 0.078-0.178 0.123-0.287 0.125h-0.006c-0.107 0-0.209-0.043-0.285-0.119l-0.93-0.928c-0.412-0.412-0.619-0.619-1.031-1.033l-0.881-0.879c-0.154-0.154-0.158-0.404-0.008-0.564l0.855-0.904c4.469-4.73 6.688-10.574 6.689-16.419-0.002-5.874-2.207-11.741-6.689-16.487l-0.855-0.904c-0.148-0.159-0.146-0.409 0.008-0.563l0.881-0.88c0.412-0.413 0.619-0.62 1.031-1.032l0.93-0.929c0.076-0.078 0.182-0.12 0.291-0.119s0.213 0.047 0.287 0.126l0.904 0.954c5.338 5.625 8.035 12.705 8.035 19.785v0.016c0 7.082-2.693 14.17-8.035 19.799zm-18.696-35.634c-0.59-0.289-1.251-0.441-1.907-0.441-0.958 0-1.902 0.324-2.664 0.912l-7.211 5.598-3.145 0.002c-1.143 0-2.263 0.462-3.07 1.271-0.808 0.805-1.27 1.926-1.27 3.069v10.846c0 2.396 1.948 4.344 4.419 4.344h3.066l7.217 5.602c0.759 0.584 1.702 0.905 2.655 0.905 0.661 0 1.321-0.152 1.911-0.441 1.502-0.736 2.432-2.23 2.432-3.901v-23.869c-0.003-1.671-0.933-3.163-2.433-3.897zm0.435 27.765c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.83c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.312 2.104v23.863h0.001z"/>
308+ </g>
309+ </g>
310+</g>
311+<g id="Layer_4">
312+ <g id="Layer_1">
313+ </g>
314+ <g id="Layer_2">
315+ <g id="g247">
316+ <g id="g249">
317+ <linearGradient id="SVGID_1_" y2="7.5698" gradientUnits="userSpaceOnUse" x2="13.965" y1="42.162" x1="39.098">
318+ <stop id="stop252" stop-color="#9B9B9B" offset="0"/>
319+ <stop id="stop254" stop-color="#ECECEC" offset="1"/>
320+ </linearGradient>
321+ <path id="path256" fill="url(#SVGID_1_)" d="m19.702 10.947v23.864c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.75-0.08c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.313 2.103zm16.778 32.694c0.076 0.076 0.178 0.119 0.285 0.119h0.006c0.109-0.002 0.213-0.047 0.287-0.125l0.904-0.955c5.342-5.629 8.035-12.717 8.035-19.801v-0.008-0.008c0-7.08-2.697-14.16-8.035-19.785l-0.904-0.954c-0.074-0.079-0.177-0.124-0.287-0.125-0.109-0.001-0.215 0.041-0.291 0.119l-0.93 0.929c-0.412 0.413-0.619 0.619-1.031 1.032l-0.881 0.88c-0.154 0.154-0.156 0.405-0.008 0.563l0.855 0.904c4.482 4.746 6.688 10.614 6.689 16.487-0.002 5.845-2.221 11.689-6.689 16.419l-0.855 0.904c-0.15 0.16-0.146 0.41 0.008 0.564l0.881 0.879c0.412 0.414 0.619 0.621 1.031 1.033l0.93 0.929zm-4.947-4.9c0.076 0.076 0.18 0.119 0.287 0.119h0.006c0.109-0.002 0.215-0.049 0.289-0.129l0.885-0.945c4-4.268 6.033-9.582 6.033-14.899v-0.007-0.008c0-5.316-2.033-10.631-6.033-14.899l-0.885-0.946c-0.074-0.08-0.18-0.126-0.289-0.128-0.109-0.001-0.215 0.041-0.291 0.119l-0.918 0.916c-0.387 0.388-0.58 0.582-0.967 0.969l-0.857 0.855c-0.154 0.154-0.158 0.402-0.01 0.562l0.826 0.886c3.184 3.422 4.74 7.551 4.742 11.68-0.002 4.123-1.561 8.248-4.744 11.667l-0.824 0.887c-0.148 0.158-0.145 0.406 0.01 0.561l0.857 0.855c0.387 0.389 0.58 0.582 0.967 0.969l0.916 0.916zm-4.857-4.824c0.076 0.074 0.18 0.117 0.287 0.117h0.008c0.109-0.002 0.215-0.051 0.289-0.131l0.844-0.92c2.688-2.926 4.068-6.51 4.068-10.104v-0.011-0.004-0.003c0-3.591-1.387-7.167-4.068-10.086l-0.844-0.919c-0.074-0.081-0.18-0.128-0.289-0.131-0.109-0.002-0.217 0.041-0.295 0.119l-0.881 0.882c-0.346 0.345-0.518 0.517-0.863 0.862l-0.807 0.806c-0.152 0.153-0.158 0.398-0.012 0.558l0.766 0.843c1.949 2.147 2.875 4.62 2.878 7.084-0.004 2.464-0.93 4.937-2.878 7.083l-0.766 0.844c-0.146 0.158-0.141 0.404 0.012 0.557l0.807 0.807c0.345 0.346 0.517 0.518 0.863 0.863l0.881 0.884z"/>
322+ </g>
323+ <g id="g258" opacity=".5">
324+ <g id="g260">
325+ <path id="path262" fill="#fff" d="m8.653 31.022l7.27 5.643c0.163 0.126 0.342 0.221 0.527 0.299l-7.654-5.941h-0.143v-0.001zm7.269-21.925l-7.75 6.016-3.832 0.001c-0.617 0-1.219 0.25-1.656 0.687-0.436 0.436-0.686 1.039-0.686 1.655v10.847c0 0.991 0.617 1.834 1.486 2.177-0.521-0.43-0.861-1.072-0.861-1.802v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.669-0.519 1.554-0.619 2.329-0.298-0.148-0.126-0.307-0.242-0.487-0.33-0.805-0.394-1.758-0.297-2.467 0.253zm9.582 21.241c1.949-2.146 2.875-4.619 2.879-7.083-0.004-2.465-0.93-4.938-2.879-7.084l-0.765-0.843c-0.146-0.16-0.141-0.405 0.012-0.558l0.806-0.806c0.346-0.345 0.518-0.518 0.863-0.862l0.881-0.882c0.055-0.054 0.125-0.084 0.199-0.101l-0.24-0.262c-0.074-0.081-0.18-0.128-0.289-0.131-0.109-0.002-0.217 0.041-0.295 0.119l-0.881 0.882c-0.346 0.345-0.518 0.517-0.863 0.862l-0.807 0.806c-0.152 0.153-0.158 0.398-0.012 0.558l0.766 0.843c1.949 2.147 2.875 4.62 2.878 7.084-0.004 2.464-0.93 4.937-2.878 7.083l-0.766 0.844c-0.146 0.158-0.141 0.404 0.012 0.557l0.807 0.807c0.345 0.346 0.517 0.518 0.863 0.863l0.881 0.883c0.076 0.074 0.18 0.117 0.287 0.117h0.008c0.021 0 0.039-0.01 0.06-0.014l-0.61-0.611-0.863-0.863-0.806-0.807c-0.152-0.152-0.158-0.398-0.012-0.557l0.764-0.844zm9.641 11.717l-0.881-0.879c-0.154-0.154-0.158-0.404-0.008-0.564l0.855-0.904c4.469-4.73 6.688-10.574 6.689-16.419-0.002-5.874-2.207-11.741-6.689-16.487l-0.855-0.904c-0.148-0.159-0.146-0.409 0.008-0.563l0.881-0.88c0.412-0.413 0.619-0.62 1.031-1.032l0.93-0.929c0.056-0.056 0.128-0.086 0.204-0.103l-0.251-0.265c-0.075-0.081-0.178-0.126-0.288-0.127s-0.214 0.041-0.291 0.118l-0.93 0.929c-0.412 0.413-0.619 0.619-1.031 1.032l-0.881 0.88c-0.154 0.154-0.156 0.405-0.008 0.563l0.855 0.904c4.482 4.746 6.688 10.614 6.689 16.487-0.002 5.845-2.221 11.689-6.689 16.419l-0.855 0.904c-0.15 0.16-0.146 0.41 0.008 0.564l0.881 0.879c0.412 0.414 0.619 0.621 1.031 1.033l0.93 0.928c0.076 0.076 0.178 0.119 0.285 0.119h0.006c0.022 0 0.042-0.01 0.063-0.014l-0.659-0.658c-0.411-0.41-0.618-0.617-1.03-1.031zm-4.87-4.824l-0.857-0.855c-0.154-0.154-0.158-0.402-0.01-0.561l0.824-0.887c3.184-3.42 4.742-7.545 4.744-11.667-0.002-4.129-1.559-8.258-4.742-11.68l-0.826-0.886c-0.148-0.16-0.145-0.407 0.01-0.562l0.857-0.855c0.387-0.387 0.58-0.581 0.967-0.969l0.918-0.916c0.055-0.056 0.126-0.086 0.202-0.102l-0.247-0.264c-0.074-0.08-0.18-0.126-0.289-0.128-0.109-0.001-0.215 0.041-0.291 0.119l-0.918 0.916c-0.387 0.388-0.58 0.582-0.967 0.969l-0.857 0.855c-0.154 0.154-0.158 0.402-0.01 0.562l0.826 0.886c3.184 3.422 4.74 7.551 4.742 11.68-0.002 4.123-1.561 8.248-4.744 11.667l-0.824 0.887c-0.148 0.158-0.145 0.406 0.01 0.561l0.857 0.855c0.387 0.389 0.58 0.582 0.967 0.969l0.916 0.916c0.076 0.076 0.18 0.119 0.287 0.119h0.006c0.021 0 0.041-0.01 0.062-0.014l-0.646-0.646c-0.387-0.387-0.58-0.58-0.967-0.969z"/>
326+ </g>
327+ </g>
328+ </g>
329+ </g>
330+</g>
331+</svg>
332
333=== added file 'Notifications/graphics/notification-audio-volume-low.svg'
334--- Notifications/graphics/notification-audio-volume-low.svg 1970-01-01 00:00:00 +0000
335+++ Notifications/graphics/notification-audio-volume-low.svg 2013-04-04 07:15:30 +0000
336@@ -0,0 +1,14 @@
337+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
338+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
339+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 45.758" xml:space="preserve" height="48" width="47.998" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 45.758" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata267"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs265">
340+ <linearGradient id="linearGradient2680" y2="7.5698" gradientUnits="userSpaceOnUse" x2="13.965" y1="42.162" x1="39.098"><stop id="stop252" stop-color="#9B9B9B" offset="0"/><stop id="stop254" stop-color="#ECECEC" offset="1"/></linearGradient>
341+ </defs>
342+<g id="Layer_3">
343+ <g id="g238" opacity=".3">
344+ <g id="g240">
345+ <path id="path242" d="m39.414 1.7l-0.869-0.91c-0.449-0.503-1.098-0.79-1.781-0.79-0.633 0-1.25 0.256-1.699 0.703l-0.926 0.931-1.031 1.03-0.881 0.881c-0.383 0.382-0.609 0.867-0.678 1.372-0.545 0.062-1.059 0.31-1.428 0.689l-0.914 0.912-0.969 0.97-0.859 0.858c-0.391 0.392-0.621 0.885-0.688 1.395-0.529 0.06-1.025 0.293-1.432 0.689l-0.878 0.883-0.862 0.862-0.807 0.807c-0.916 0.914-0.945 2.375-0.08 3.313l0.768 0.846c1.539 1.696 2.356 3.681 2.36 5.734-0.004 2.061-0.821 4.046-2.362 5.745l-0.756 0.831c-0.875 0.951-0.846 2.412 0.07 3.326l0.803 0.803 0.436 0.438 0.431 0.431 0.9 0.901c0.387 0.378 0.879 0.609 1.406 0.669 0.066 0.51 0.297 1.003 0.691 1.396l0.855 0.853 0.969 0.972 0.916 0.916c0.383 0.382 0.889 0.625 1.426 0.688 0.068 0.507 0.295 0.994 0.682 1.374l0.877 0.875 1.035 1.035 0.928 0.929c0.453 0.454 1.057 0.703 1.699 0.703h0.043c0.656-0.012 1.281-0.293 1.699-0.746l0.906-0.956c5.535-5.832 8.584-13.354 8.584-21.193 0-7.816-3.049-15.33-8.584-21.165zm-11.31 31.283l-0.844 0.92c-0.074 0.08-0.18 0.129-0.289 0.131h-0.008c-0.107 0-0.211-0.043-0.287-0.117l-0.881-0.883-0.863-0.863-0.807-0.807c-0.152-0.152-0.158-0.398-0.012-0.557l0.766-0.844c1.949-2.146 2.875-4.619 2.878-7.083-0.004-2.465-0.93-4.938-2.878-7.084l-0.766-0.843c-0.146-0.16-0.141-0.405 0.012-0.558l0.807-0.806c0.345-0.345 0.517-0.518 0.863-0.862l0.881-0.882c0.078-0.078 0.186-0.121 0.295-0.119s0.215 0.05 0.289 0.131l0.844 0.919c2.682 2.918 4.068 6.495 4.068 10.086v0.003 0.015c0 3.593-1.381 7.177-4.068 10.103zm4.896 4.803l-0.885 0.945c-0.074 0.08-0.18 0.127-0.289 0.129h-0.006c-0.107 0-0.211-0.043-0.287-0.119l-0.916-0.916c-0.387-0.387-0.58-0.58-0.967-0.969l-0.857-0.856c-0.154-0.154-0.158-0.402-0.01-0.561l0.824-0.887c3.184-3.42 4.742-7.545 4.744-11.667-0.002-4.129-1.559-8.258-4.742-11.68l-0.826-0.886c-0.148-0.16-0.145-0.407 0.01-0.562l0.857-0.855c0.387-0.387 0.58-0.581 0.967-0.969l0.918-0.916c0.076-0.078 0.182-0.12 0.291-0.119 0.109 0.002 0.215 0.048 0.289 0.128l0.885 0.947c4 4.268 6.033 9.583 6.033 14.899v0.015c0 5.317-2.033 10.631-6.033 14.899zm4.963 4.894l-0.904 0.955c-0.074 0.078-0.178 0.123-0.287 0.125h-0.006c-0.107 0-0.209-0.043-0.285-0.119l-0.93-0.928c-0.412-0.412-0.619-0.619-1.031-1.033l-0.881-0.879c-0.154-0.154-0.158-0.404-0.008-0.564l0.855-0.904c4.469-4.73 6.688-10.574 6.689-16.419-0.002-5.874-2.207-11.741-6.689-16.487l-0.855-0.904c-0.148-0.159-0.146-0.409 0.008-0.563l0.881-0.88c0.412-0.413 0.619-0.62 1.031-1.032l0.93-0.929c0.076-0.078 0.182-0.12 0.291-0.119s0.213 0.047 0.287 0.126l0.904 0.954c5.338 5.625 8.035 12.705 8.035 19.785v0.016c0 7.082-2.693 14.17-8.035 19.799zm-18.696-35.634c-0.59-0.289-1.251-0.441-1.907-0.441-0.958 0-1.902 0.324-2.664 0.912l-7.211 5.598-3.145 0.002c-1.143 0-2.263 0.462-3.07 1.271-0.808 0.805-1.27 1.926-1.27 3.069v10.846c0 2.396 1.948 4.344 4.419 4.344h3.066l7.217 5.602c0.759 0.584 1.702 0.905 2.655 0.905 0.661 0 1.321-0.152 1.911-0.441 1.502-0.736 2.432-2.23 2.432-3.901v-23.869c-0.003-1.671-0.933-3.163-2.433-3.897zm0.435 27.765c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.83c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.312 2.104v23.863h0.001z"/>
346+ </g>
347+ </g>
348+</g>
349+<path id="path2701" fill="url(#linearGradient2680)" d="m19.702 10.947v23.864c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.75-0.08c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.313 2.103z"/><path id="path2693" opacity=".5" fill="#fff" d="m8.653 31.022l7.27 5.643c0.163 0.126 0.342 0.221 0.527 0.299l-7.654-5.941h-0.143v-0.001z"/><path id="path2691" opacity=".5" fill="#fff" d="m15.922 9.097l-7.75 6.016-3.832 0.001c-0.617 0-1.219 0.25-1.656 0.687-0.436 0.436-0.686 1.039-0.686 1.655v10.847c0 0.991 0.617 1.834 1.486 2.177-0.521-0.43-0.861-1.072-0.861-1.802v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.669-0.519 1.554-0.619 2.329-0.298-0.148-0.126-0.307-0.242-0.487-0.33-0.805-0.394-1.758-0.297-2.467 0.253z"/><g id="g2711"><path id="path256" fill="url(#linearGradient2680)" d="m26.676 33.917c0.076 0.074 0.18 0.117 0.287 0.117h0.008c0.109-0.002 0.215-0.051 0.289-0.131l0.844-0.92c2.688-2.926 4.068-6.51 4.068-10.104v-0.011-0.004-0.003c0-3.591-1.387-7.167-4.068-10.086l-0.844-0.919c-0.074-0.081-0.18-0.128-0.289-0.131-0.109-0.002-0.217 0.041-0.295 0.119l-0.881 0.882c-0.346 0.345-0.518 0.517-0.863 0.862l-0.807 0.806c-0.152 0.153-0.158 0.398-0.012 0.558l0.766 0.843c1.949 2.147 2.875 4.62 2.878 7.084-0.004 2.464-0.93 4.937-2.878 7.083l-0.766 0.844c-0.146 0.158-0.141 0.404 0.012 0.557l0.807 0.807c0.345 0.346 0.517 0.518 0.863 0.863l0.881 0.884z"/><path id="path2689" opacity=".5" fill="#fff" d="m25.504 30.338c1.949-2.146 2.875-4.619 2.879-7.083-0.004-2.465-0.93-4.938-2.879-7.084l-0.765-0.843c-0.146-0.16-0.141-0.405 0.012-0.558l0.806-0.806c0.346-0.345 0.518-0.518 0.863-0.862l0.881-0.882c0.055-0.054 0.125-0.084 0.199-0.101l-0.24-0.262c-0.074-0.081-0.18-0.128-0.289-0.131-0.109-0.002-0.217 0.041-0.295 0.119l-0.881 0.882c-0.346 0.345-0.518 0.517-0.863 0.862l-0.807 0.806c-0.152 0.153-0.158 0.398-0.012 0.558l0.766 0.843c1.949 2.147 2.875 4.62 2.878 7.084-0.004 2.464-0.93 4.937-2.878 7.083l-0.766 0.844c-0.146 0.158-0.141 0.404 0.012 0.557l0.807 0.807c0.345 0.346 0.517 0.518 0.863 0.863l0.881 0.883c0.076 0.074 0.18 0.117 0.287 0.117h0.008c0.021 0 0.039-0.01 0.06-0.014l-0.61-0.611-0.863-0.863-0.806-0.807c-0.152-0.152-0.158-0.398-0.012-0.557l0.764-0.844z"/></g><g id="g2703" opacity=".3"><path id="path2699" fill="url(#linearGradient2680)" d="m36.48 43.641c0.076 0.076 0.178 0.119 0.285 0.119h0.006c0.109-0.002 0.213-0.047 0.287-0.125l0.904-0.955c5.342-5.629 8.035-12.717 8.035-19.801v-0.008-0.008c0-7.08-2.697-14.16-8.035-19.785l-0.904-0.954c-0.074-0.079-0.177-0.124-0.287-0.125-0.109-0.001-0.215 0.041-0.291 0.119l-0.93 0.929c-0.412 0.413-0.619 0.619-1.031 1.032l-0.881 0.88c-0.154 0.154-0.156 0.405-0.008 0.563l0.855 0.904c4.482 4.746 6.688 10.614 6.689 16.487-0.002 5.845-2.221 11.689-6.689 16.419l-0.855 0.904c-0.15 0.16-0.146 0.41 0.008 0.564l0.881 0.879c0.412 0.414 0.619 0.621 1.031 1.033l0.93 0.929z"/><path id="path2687" opacity=".5" fill="#fff" d="m35.145 42.055l-0.881-0.879c-0.154-0.154-0.158-0.404-0.008-0.564l0.855-0.904c4.469-4.73 6.688-10.574 6.689-16.419-0.002-5.874-2.207-11.741-6.689-16.487l-0.855-0.904c-0.148-0.159-0.146-0.409 0.008-0.563l0.881-0.88c0.412-0.413 0.619-0.62 1.031-1.032l0.93-0.929c0.056-0.056 0.128-0.086 0.204-0.103l-0.251-0.265c-0.075-0.081-0.178-0.126-0.288-0.127s-0.214 0.041-0.291 0.118l-0.93 0.929c-0.412 0.413-0.619 0.619-1.031 1.032l-0.881 0.88c-0.154 0.154-0.156 0.405-0.008 0.563l0.855 0.904c4.482 4.746 6.688 10.614 6.689 16.487-0.002 5.845-2.221 11.689-6.689 16.419l-0.855 0.904c-0.15 0.16-0.146 0.41 0.008 0.564l0.881 0.879c0.412 0.414 0.619 0.621 1.031 1.033l0.93 0.928c0.076 0.076 0.178 0.119 0.285 0.119h0.006c0.022 0 0.042-0.01 0.063-0.014l-0.659-0.658c-0.411-0.41-0.618-0.617-1.03-1.031z"/></g><g id="g2707" opacity=".3"><path id="path2697" fill="url(#linearGradient2680)" d="m31.533 38.741c0.076 0.076 0.18 0.119 0.287 0.119h0.006c0.109-0.002 0.215-0.049 0.289-0.129l0.885-0.945c4-4.268 6.033-9.582 6.033-14.899v-0.007-0.008c0-5.316-2.033-10.631-6.033-14.899l-0.885-0.946c-0.074-0.08-0.18-0.126-0.289-0.128-0.109-0.001-0.215 0.041-0.291 0.119l-0.918 0.916c-0.387 0.388-0.58 0.582-0.967 0.969l-0.857 0.855c-0.154 0.154-0.158 0.402-0.01 0.562l0.826 0.886c3.184 3.422 4.74 7.551 4.742 11.68-0.002 4.123-1.561 8.248-4.744 11.667l-0.824 0.887c-0.148 0.158-0.145 0.406 0.01 0.561l0.857 0.855c0.387 0.389 0.58 0.582 0.967 0.969l0.916 0.916z"/><path id="path262" opacity=".5" fill="#fff" d="m30.275 37.231l-0.857-0.855c-0.154-0.154-0.158-0.402-0.01-0.561l0.824-0.887c3.184-3.42 4.742-7.545 4.744-11.667-0.002-4.129-1.559-8.258-4.742-11.68l-0.826-0.886c-0.148-0.16-0.145-0.407 0.01-0.562l0.857-0.855c0.387-0.387 0.58-0.581 0.967-0.969l0.918-0.916c0.055-0.056 0.126-0.086 0.202-0.102l-0.247-0.264c-0.074-0.08-0.18-0.126-0.289-0.128-0.109-0.001-0.215 0.041-0.291 0.119l-0.918 0.916c-0.387 0.388-0.58 0.582-0.967 0.969l-0.857 0.855c-0.154 0.154-0.158 0.402-0.01 0.562l0.826 0.886c3.184 3.422 4.74 7.551 4.742 11.68-0.002 4.123-1.561 8.248-4.744 11.667l-0.824 0.887c-0.148 0.158-0.145 0.406 0.01 0.561l0.857 0.855c0.387 0.389 0.58 0.582 0.967 0.969l0.916 0.916c0.076 0.076 0.18 0.119 0.287 0.119h0.006c0.021 0 0.041-0.01 0.062-0.014l-0.646-0.646c-0.387-0.387-0.58-0.58-0.967-0.969z"/></g>
350+</svg>
351
352=== added file 'Notifications/graphics/notification-audio-volume-medium.svg'
353--- Notifications/graphics/notification-audio-volume-medium.svg 1970-01-01 00:00:00 +0000
354+++ Notifications/graphics/notification-audio-volume-medium.svg 2013-04-04 07:15:30 +0000
355@@ -0,0 +1,14 @@
356+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
357+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
358+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 45.758" xml:space="preserve" height="48" width="47.998" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 45.758" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata267"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs265">
359+ <linearGradient id="linearGradient2680" y2="7.5698" gradientUnits="userSpaceOnUse" x2="13.965" y1="42.162" x1="39.098"><stop id="stop252" stop-color="#9B9B9B" offset="0"/><stop id="stop254" stop-color="#ECECEC" offset="1"/></linearGradient>
360+ </defs>
361+<g id="Layer_3">
362+ <g id="g238" opacity=".3">
363+ <g id="g240">
364+ <path id="path242" d="m39.414 1.7l-0.869-0.91c-0.449-0.503-1.098-0.79-1.781-0.79-0.633 0-1.25 0.256-1.699 0.703l-0.926 0.931-1.031 1.03-0.881 0.881c-0.383 0.382-0.609 0.867-0.678 1.372-0.545 0.062-1.059 0.31-1.428 0.689l-0.914 0.912-0.969 0.97-0.859 0.858c-0.391 0.392-0.621 0.885-0.688 1.395-0.529 0.06-1.025 0.293-1.432 0.689l-0.878 0.883-0.862 0.862-0.807 0.807c-0.916 0.914-0.945 2.375-0.08 3.313l0.768 0.846c1.539 1.696 2.356 3.681 2.36 5.734-0.004 2.061-0.821 4.046-2.362 5.745l-0.756 0.831c-0.875 0.951-0.846 2.412 0.07 3.326l0.803 0.803 0.436 0.438 0.431 0.431 0.9 0.901c0.387 0.378 0.879 0.609 1.406 0.669 0.066 0.51 0.297 1.003 0.691 1.396l0.855 0.853 0.969 0.972 0.916 0.916c0.383 0.382 0.889 0.625 1.426 0.688 0.068 0.507 0.295 0.994 0.682 1.374l0.877 0.875 1.035 1.035 0.928 0.929c0.453 0.454 1.057 0.703 1.699 0.703h0.043c0.656-0.012 1.281-0.293 1.699-0.746l0.906-0.956c5.535-5.832 8.584-13.354 8.584-21.193 0-7.816-3.049-15.33-8.584-21.165zm-11.31 31.283l-0.844 0.92c-0.074 0.08-0.18 0.129-0.289 0.131h-0.008c-0.107 0-0.211-0.043-0.287-0.117l-0.881-0.883-0.863-0.863-0.807-0.807c-0.152-0.152-0.158-0.398-0.012-0.557l0.766-0.844c1.949-2.146 2.875-4.619 2.878-7.083-0.004-2.465-0.93-4.938-2.878-7.084l-0.766-0.843c-0.146-0.16-0.141-0.405 0.012-0.558l0.807-0.806c0.345-0.345 0.517-0.518 0.863-0.862l0.881-0.882c0.078-0.078 0.186-0.121 0.295-0.119s0.215 0.05 0.289 0.131l0.844 0.919c2.682 2.918 4.068 6.495 4.068 10.086v0.003 0.015c0 3.593-1.381 7.177-4.068 10.103zm4.896 4.803l-0.885 0.945c-0.074 0.08-0.18 0.127-0.289 0.129h-0.006c-0.107 0-0.211-0.043-0.287-0.119l-0.916-0.916c-0.387-0.387-0.58-0.58-0.967-0.969l-0.857-0.856c-0.154-0.154-0.158-0.402-0.01-0.561l0.824-0.887c3.184-3.42 4.742-7.545 4.744-11.667-0.002-4.129-1.559-8.258-4.742-11.68l-0.826-0.886c-0.148-0.16-0.145-0.407 0.01-0.562l0.857-0.855c0.387-0.387 0.58-0.581 0.967-0.969l0.918-0.916c0.076-0.078 0.182-0.12 0.291-0.119 0.109 0.002 0.215 0.048 0.289 0.128l0.885 0.947c4 4.268 6.033 9.583 6.033 14.899v0.015c0 5.317-2.033 10.631-6.033 14.899zm4.963 4.894l-0.904 0.955c-0.074 0.078-0.178 0.123-0.287 0.125h-0.006c-0.107 0-0.209-0.043-0.285-0.119l-0.93-0.928c-0.412-0.412-0.619-0.619-1.031-1.033l-0.881-0.879c-0.154-0.154-0.158-0.404-0.008-0.564l0.855-0.904c4.469-4.73 6.688-10.574 6.689-16.419-0.002-5.874-2.207-11.741-6.689-16.487l-0.855-0.904c-0.148-0.159-0.146-0.409 0.008-0.563l0.881-0.88c0.412-0.413 0.619-0.62 1.031-1.032l0.93-0.929c0.076-0.078 0.182-0.12 0.291-0.119s0.213 0.047 0.287 0.126l0.904 0.954c5.338 5.625 8.035 12.705 8.035 19.785v0.016c0 7.082-2.693 14.17-8.035 19.799zm-18.696-35.634c-0.59-0.289-1.251-0.441-1.907-0.441-0.958 0-1.902 0.324-2.664 0.912l-7.211 5.598-3.145 0.002c-1.143 0-2.263 0.462-3.07 1.271-0.808 0.805-1.27 1.926-1.27 3.069v10.846c0 2.396 1.948 4.344 4.419 4.344h3.066l7.217 5.602c0.759 0.584 1.702 0.905 2.655 0.905 0.661 0 1.321-0.152 1.911-0.441 1.502-0.736 2.432-2.23 2.432-3.901v-23.869c-0.003-1.671-0.933-3.163-2.433-3.897zm0.435 27.765c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.83c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.312 2.104v23.863h0.001z"/>
365+ </g>
366+ </g>
367+</g>
368+<path id="path2701" fill="url(#linearGradient2680)" d="m19.702 10.947v23.864c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.75-0.08c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.313 2.103z"/><path id="path2693" opacity=".5" fill="#fff" d="m8.653 31.022l7.27 5.643c0.163 0.126 0.342 0.221 0.527 0.299l-7.654-5.941h-0.143v-0.001z"/><path id="path2691" opacity=".5" fill="#fff" d="m15.922 9.097l-7.75 6.016-3.832 0.001c-0.617 0-1.219 0.25-1.656 0.687-0.436 0.436-0.686 1.039-0.686 1.655v10.847c0 0.991 0.617 1.834 1.486 2.177-0.521-0.43-0.861-1.072-0.861-1.802v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.669-0.519 1.554-0.619 2.329-0.298-0.148-0.126-0.307-0.242-0.487-0.33-0.805-0.394-1.758-0.297-2.467 0.253z"/><g id="g2711"><path id="path256" fill="url(#linearGradient2680)" d="m26.676 33.917c0.076 0.074 0.18 0.117 0.287 0.117h0.008c0.109-0.002 0.215-0.051 0.289-0.131l0.844-0.92c2.688-2.926 4.068-6.51 4.068-10.104v-0.011-0.004-0.003c0-3.591-1.387-7.167-4.068-10.086l-0.844-0.919c-0.074-0.081-0.18-0.128-0.289-0.131-0.109-0.002-0.217 0.041-0.295 0.119l-0.881 0.882c-0.346 0.345-0.518 0.517-0.863 0.862l-0.807 0.806c-0.152 0.153-0.158 0.398-0.012 0.558l0.766 0.843c1.949 2.147 2.875 4.62 2.878 7.084-0.004 2.464-0.93 4.937-2.878 7.083l-0.766 0.844c-0.146 0.158-0.141 0.404 0.012 0.557l0.807 0.807c0.345 0.346 0.517 0.518 0.863 0.863l0.881 0.884z"/><path id="path2689" opacity=".5" fill="#fff" d="m25.504 30.338c1.949-2.146 2.875-4.619 2.879-7.083-0.004-2.465-0.93-4.938-2.879-7.084l-0.765-0.843c-0.146-0.16-0.141-0.405 0.012-0.558l0.806-0.806c0.346-0.345 0.518-0.518 0.863-0.862l0.881-0.882c0.055-0.054 0.125-0.084 0.199-0.101l-0.24-0.262c-0.074-0.081-0.18-0.128-0.289-0.131-0.109-0.002-0.217 0.041-0.295 0.119l-0.881 0.882c-0.346 0.345-0.518 0.517-0.863 0.862l-0.807 0.806c-0.152 0.153-0.158 0.398-0.012 0.558l0.766 0.843c1.949 2.147 2.875 4.62 2.878 7.084-0.004 2.464-0.93 4.937-2.878 7.083l-0.766 0.844c-0.146 0.158-0.141 0.404 0.012 0.557l0.807 0.807c0.345 0.346 0.517 0.518 0.863 0.863l0.881 0.883c0.076 0.074 0.18 0.117 0.287 0.117h0.008c0.021 0 0.039-0.01 0.06-0.014l-0.61-0.611-0.863-0.863-0.806-0.807c-0.152-0.152-0.158-0.398-0.012-0.557l0.764-0.844z"/></g><g id="g2703" opacity=".3"><path id="path2699" fill="url(#linearGradient2680)" d="m36.48 43.641c0.076 0.076 0.178 0.119 0.285 0.119h0.006c0.109-0.002 0.213-0.047 0.287-0.125l0.904-0.955c5.342-5.629 8.035-12.717 8.035-19.801v-0.008-0.008c0-7.08-2.697-14.16-8.035-19.785l-0.904-0.954c-0.074-0.079-0.177-0.124-0.287-0.125-0.109-0.001-0.215 0.041-0.291 0.119l-0.93 0.929c-0.412 0.413-0.619 0.619-1.031 1.032l-0.881 0.88c-0.154 0.154-0.156 0.405-0.008 0.563l0.855 0.904c4.482 4.746 6.688 10.614 6.689 16.487-0.002 5.845-2.221 11.689-6.689 16.419l-0.855 0.904c-0.15 0.16-0.146 0.41 0.008 0.564l0.881 0.879c0.412 0.414 0.619 0.621 1.031 1.033l0.93 0.929z"/><path id="path2687" opacity=".5" fill="#fff" d="m35.145 42.055l-0.881-0.879c-0.154-0.154-0.158-0.404-0.008-0.564l0.855-0.904c4.469-4.73 6.688-10.574 6.689-16.419-0.002-5.874-2.207-11.741-6.689-16.487l-0.855-0.904c-0.148-0.159-0.146-0.409 0.008-0.563l0.881-0.88c0.412-0.413 0.619-0.62 1.031-1.032l0.93-0.929c0.056-0.056 0.128-0.086 0.204-0.103l-0.251-0.265c-0.075-0.081-0.178-0.126-0.288-0.127s-0.214 0.041-0.291 0.118l-0.93 0.929c-0.412 0.413-0.619 0.619-1.031 1.032l-0.881 0.88c-0.154 0.154-0.156 0.405-0.008 0.563l0.855 0.904c4.482 4.746 6.688 10.614 6.689 16.487-0.002 5.845-2.221 11.689-6.689 16.419l-0.855 0.904c-0.15 0.16-0.146 0.41 0.008 0.564l0.881 0.879c0.412 0.414 0.619 0.621 1.031 1.033l0.93 0.928c0.076 0.076 0.178 0.119 0.285 0.119h0.006c0.022 0 0.042-0.01 0.063-0.014l-0.659-0.658c-0.411-0.41-0.618-0.617-1.03-1.031z"/></g><g id="g2707"><path id="path2697" fill="url(#linearGradient2680)" d="m31.533 38.741c0.076 0.076 0.18 0.119 0.287 0.119h0.006c0.109-0.002 0.215-0.049 0.289-0.129l0.885-0.945c4-4.268 6.033-9.582 6.033-14.899v-0.007-0.008c0-5.316-2.033-10.631-6.033-14.899l-0.885-0.946c-0.074-0.08-0.18-0.126-0.289-0.128-0.109-0.001-0.215 0.041-0.291 0.119l-0.918 0.916c-0.387 0.388-0.58 0.582-0.967 0.969l-0.857 0.855c-0.154 0.154-0.158 0.402-0.01 0.562l0.826 0.886c3.184 3.422 4.74 7.551 4.742 11.68-0.002 4.123-1.561 8.248-4.744 11.667l-0.824 0.887c-0.148 0.158-0.145 0.406 0.01 0.561l0.857 0.855c0.387 0.389 0.58 0.582 0.967 0.969l0.916 0.916z"/><path id="path262" opacity=".5" fill="#fff" d="m30.275 37.231l-0.857-0.855c-0.154-0.154-0.158-0.402-0.01-0.561l0.824-0.887c3.184-3.42 4.742-7.545 4.744-11.667-0.002-4.129-1.559-8.258-4.742-11.68l-0.826-0.886c-0.148-0.16-0.145-0.407 0.01-0.562l0.857-0.855c0.387-0.387 0.58-0.581 0.967-0.969l0.918-0.916c0.055-0.056 0.126-0.086 0.202-0.102l-0.247-0.264c-0.074-0.08-0.18-0.126-0.289-0.128-0.109-0.001-0.215 0.041-0.291 0.119l-0.918 0.916c-0.387 0.388-0.58 0.582-0.967 0.969l-0.857 0.855c-0.154 0.154-0.158 0.402-0.01 0.562l0.826 0.886c3.184 3.422 4.74 7.551 4.742 11.68-0.002 4.123-1.561 8.248-4.744 11.667l-0.824 0.887c-0.148 0.158-0.145 0.406 0.01 0.561l0.857 0.855c0.387 0.389 0.58 0.582 0.967 0.969l0.916 0.916c0.076 0.076 0.18 0.119 0.287 0.119h0.006c0.021 0 0.041-0.01 0.062-0.014l-0.646-0.646c-0.387-0.387-0.58-0.58-0.967-0.969z"/></g>
369+</svg>
370
371=== added file 'Notifications/graphics/notification-audio-volume-muted.svg'
372--- Notifications/graphics/notification-audio-volume-muted.svg 1970-01-01 00:00:00 +0000
373+++ Notifications/graphics/notification-audio-volume-muted.svg 2013-04-04 07:15:30 +0000
374@@ -0,0 +1,21 @@
375+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
376+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
377+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 45.758" xml:space="preserve" height="48" width="47.998" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 45.758" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata267"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs265"><linearGradient id="linearGradient3090" y2="7.5698" gradientUnits="userSpaceOnUse" x2="13.965" y1="42.162" x1="39.098"><stop id="stop252" stop-color="#9B9B9B" offset="0"/><stop id="stop254" stop-color="#ECECEC" offset="1"/></linearGradient><linearGradient id="linearGradient3888" y2="29.068" gradientUnits="userSpaceOnUse" x2="37.841" y1="13.068" x1="37.841"><stop id="stop3770" stop-color="#FF6363" offset="0"/><stop id="stop3772" stop-color="#c00" offset="1"/></linearGradient></defs>
378+<g id="g238" opacity=".3">
379+ <g id="g240">
380+ <path id="path242" d="m19.267 7.046c-0.59-0.289-1.251-0.441-1.907-0.441-0.958 0-1.902 0.324-2.664 0.912l-7.211 5.598-3.145 0.002c-1.143 0-2.263 0.462-3.07 1.271-0.808 0.805-1.27 1.926-1.27 3.069v10.846c0 2.396 1.948 4.344 4.419 4.344h3.066l7.217 5.602c0.759 0.584 1.702 0.905 2.655 0.905 0.661 0 1.321-0.152 1.911-0.441 1.502-0.736 2.432-2.23 2.432-3.901v-23.869c-0.003-1.671-0.933-3.163-2.433-3.897zm0.435 27.765c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.83c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.312 2.104v23.863h0.001z"/>
381+ </g>
382+ </g><path id="path256" fill="url(#linearGradient3090)" d="m19.702 10.947v23.864c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.75-0.08c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.313 2.103z"/><path id="path262" opacity=".5" fill="#fff" d="m8.653 31.022l7.27 5.643c0.163 0.126 0.342 0.221 0.527 0.299l-7.654-5.941h-0.143v-0.001zm7.269-21.925l-7.75 6.016-3.832 0.001c-0.617 0-1.219 0.25-1.656 0.687-0.436 0.436-0.686 1.039-0.686 1.655v10.847c0 0.991 0.617 1.834 1.486 2.177-0.521-0.43-0.861-1.072-0.861-1.802v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.669-0.519 1.554-0.619 2.329-0.298-0.148-0.126-0.307-0.242-0.487-0.33-0.805-0.394-1.758-0.297-2.467 0.253z"/>
383+<g id="Layer_5" transform="translate(.21921 43.21)">
384+</g><g id="Layer_6" transform="translate(.21921 43.21)">
385+</g><g id="g3875" transform="translate(0 -1.5405)"><g id="Layer_7" transform="translate(.21921 3.21)">
386+ <path id="path3766" opacity=".3" d="m42.772 31.208c-0.642 0-1.242-0.247-1.691-0.699l-3.239-3.239-3.241 3.241c-0.443 0.443-1.061 0.697-1.691 0.697-0.628 0-1.222-0.241-1.674-0.679l-2.694-2.696c-0.438-0.425-0.699-1.05-0.699-1.692 0-0.629 0.256-1.246 0.701-1.691l3.239-3.239-3.239-3.239c-0.927-0.937-0.927-2.447-0.011-3.375l2.685-2.682c0.452-0.454 1.053-0.704 1.692-0.704 0.646 0 1.25 0.253 1.701 0.712l3.231 3.23 3.239-3.239c0.425-0.439 1.05-0.702 1.691-0.702 0.63 0 1.246 0.256 1.692 0.702l2.674 2.674c0.439 0.425 0.701 1.05 0.701 1.692 0 0.629-0.256 1.246-0.701 1.691l-3.239 3.239 3.239 3.239c0.454 0.452 0.701 1.053 0.701 1.691 0 0.64-0.247 1.24-0.701 1.692l-2.672 2.676c-0.451 0.453-1.052 0.7-1.694 0.7z"/>
387+</g><g id="Layer_9" transform="translate(.21921 3.21)">
388+ <path id="path3774" fill="url(#linearGradient3888)" d="m41.073 21.069l4.652-4.653c0.073-0.073 0.115-0.175 0.115-0.278s-0.042-0.205-0.115-0.279l-2.675-2.674c-0.073-0.074-0.175-0.115-0.278-0.115-0.104 0-0.206 0.041-0.278 0.115l-4.653 4.652-4.653-4.652c-0.153-0.154-0.402-0.154-0.557 0l-2.674 2.674c-0.154 0.154-0.154 0.404 0 0.558l4.652 4.653-4.653 4.652c-0.073 0.073-0.115 0.175-0.115 0.278s0.042 0.205 0.115 0.278l2.675 2.675c0.073 0.073 0.175 0.115 0.278 0.115 0.104 0 0.206-0.042 0.278-0.115l4.653-4.652 4.653 4.652c0.074 0.074 0.173 0.115 0.278 0.115s0.204-0.041 0.278-0.115l2.675-2.675c0.074-0.074 0.115-0.173 0.115-0.278s-0.041-0.204-0.115-0.278l-4.651-4.653z"/>
389+</g><g id="Layer_8" transform="translate(.21921 3.21)">
390+ <g id="g3778" opacity=".4">
391+ <g id="g3780">
392+ <path id="path3782" fill="#fff" d="m43.051 13.184c-0.073-0.074-0.175-0.115-0.278-0.115-0.104 0-0.206 0.042-0.278 0.115l-4.497 4.497 0.531 0.531 4.653-4.652c0.043-0.043 0.096-0.071 0.153-0.091l-0.284-0.285zm-7.754 8.26l-4.652-4.653c-0.154-0.153-0.154-0.403 0-0.558l2.674-2.674c0.045-0.044 0.098-0.072 0.153-0.091l-0.284-0.284c-0.153-0.154-0.402-0.154-0.557 0l-2.674 2.674c-0.154 0.154-0.154 0.404 0 0.557l4.652 4.653-4.653 4.653c-0.073 0.073-0.115 0.175-0.115 0.278s0.042 0.205 0.115 0.278l2.675 2.675c0.073 0.073 0.175 0.115 0.278 0.115 0.043 0 0.084-0.012 0.125-0.024l-2.391-2.391c-0.073-0.073-0.115-0.175-0.115-0.278s0.042-0.205 0.115-0.278l4.654-4.652zm3.075 3.388l4.122 4.121c0.074 0.074 0.173 0.115 0.278 0.115 0.044 0 0.085-0.011 0.125-0.024l-4.369-4.368-0.156 0.156z"/>
393+ </g>
394+ </g>
395+</g></g></svg>
396
397=== added file 'Notifications/graphics/notification-audio-volume-off.svg'
398--- Notifications/graphics/notification-audio-volume-off.svg 1970-01-01 00:00:00 +0000
399+++ Notifications/graphics/notification-audio-volume-off.svg 2013-04-04 07:15:30 +0000
400@@ -0,0 +1,14 @@
401+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
402+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
403+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 45.758" xml:space="preserve" height="48" width="47.998" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 45.758" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata267"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs265">
404+ <linearGradient id="linearGradient2680" y2="7.5698" gradientUnits="userSpaceOnUse" x2="13.965" y1="42.162" x1="39.098"><stop id="stop252" stop-color="#9B9B9B" offset="0"/><stop id="stop254" stop-color="#ECECEC" offset="1"/></linearGradient>
405+ </defs>
406+<g id="Layer_3">
407+ <g id="g238" opacity=".3">
408+ <g id="g240">
409+ <path id="path242" d="m39.414 1.7l-0.869-0.91c-0.449-0.503-1.098-0.79-1.781-0.79-0.633 0-1.25 0.256-1.699 0.703l-0.926 0.931-1.031 1.03-0.881 0.881c-0.383 0.382-0.609 0.867-0.678 1.372-0.545 0.062-1.059 0.31-1.428 0.689l-0.914 0.912-0.969 0.97-0.859 0.858c-0.391 0.392-0.621 0.885-0.688 1.395-0.529 0.06-1.025 0.293-1.432 0.689l-0.878 0.883-0.862 0.862-0.807 0.807c-0.916 0.914-0.945 2.375-0.08 3.313l0.768 0.846c1.539 1.696 2.356 3.681 2.36 5.734-0.004 2.061-0.821 4.046-2.362 5.745l-0.756 0.831c-0.875 0.951-0.846 2.412 0.07 3.326l0.803 0.803 0.436 0.438 0.431 0.431 0.9 0.901c0.387 0.378 0.879 0.609 1.406 0.669 0.066 0.51 0.297 1.003 0.691 1.396l0.855 0.853 0.969 0.972 0.916 0.916c0.383 0.382 0.889 0.625 1.426 0.688 0.068 0.507 0.295 0.994 0.682 1.374l0.877 0.875 1.035 1.035 0.928 0.929c0.453 0.454 1.057 0.703 1.699 0.703h0.043c0.656-0.012 1.281-0.293 1.699-0.746l0.906-0.956c5.535-5.832 8.584-13.354 8.584-21.193 0-7.816-3.049-15.33-8.584-21.165zm-11.31 31.283l-0.844 0.92c-0.074 0.08-0.18 0.129-0.289 0.131h-0.008c-0.107 0-0.211-0.043-0.287-0.117l-0.881-0.883-0.863-0.863-0.807-0.807c-0.152-0.152-0.158-0.398-0.012-0.557l0.766-0.844c1.949-2.146 2.875-4.619 2.878-7.083-0.004-2.465-0.93-4.938-2.878-7.084l-0.766-0.843c-0.146-0.16-0.141-0.405 0.012-0.558l0.807-0.806c0.345-0.345 0.517-0.518 0.863-0.862l0.881-0.882c0.078-0.078 0.186-0.121 0.295-0.119s0.215 0.05 0.289 0.131l0.844 0.919c2.682 2.918 4.068 6.495 4.068 10.086v0.003 0.015c0 3.593-1.381 7.177-4.068 10.103zm4.896 4.803l-0.885 0.945c-0.074 0.08-0.18 0.127-0.289 0.129h-0.006c-0.107 0-0.211-0.043-0.287-0.119l-0.916-0.916c-0.387-0.387-0.58-0.58-0.967-0.969l-0.857-0.856c-0.154-0.154-0.158-0.402-0.01-0.561l0.824-0.887c3.184-3.42 4.742-7.545 4.744-11.667-0.002-4.129-1.559-8.258-4.742-11.68l-0.826-0.886c-0.148-0.16-0.145-0.407 0.01-0.562l0.857-0.855c0.387-0.387 0.58-0.581 0.967-0.969l0.918-0.916c0.076-0.078 0.182-0.12 0.291-0.119 0.109 0.002 0.215 0.048 0.289 0.128l0.885 0.947c4 4.268 6.033 9.583 6.033 14.899v0.015c0 5.317-2.033 10.631-6.033 14.899zm4.963 4.894l-0.904 0.955c-0.074 0.078-0.178 0.123-0.287 0.125h-0.006c-0.107 0-0.209-0.043-0.285-0.119l-0.93-0.928c-0.412-0.412-0.619-0.619-1.031-1.033l-0.881-0.879c-0.154-0.154-0.158-0.404-0.008-0.564l0.855-0.904c4.469-4.73 6.688-10.574 6.689-16.419-0.002-5.874-2.207-11.741-6.689-16.487l-0.855-0.904c-0.148-0.159-0.146-0.409 0.008-0.563l0.881-0.88c0.412-0.413 0.619-0.62 1.031-1.032l0.93-0.929c0.076-0.078 0.182-0.12 0.291-0.119s0.213 0.047 0.287 0.126l0.904 0.954c5.338 5.625 8.035 12.705 8.035 19.785v0.016c0 7.082-2.693 14.17-8.035 19.799zm-18.696-35.634c-0.59-0.289-1.251-0.441-1.907-0.441-0.958 0-1.902 0.324-2.664 0.912l-7.211 5.598-3.145 0.002c-1.143 0-2.263 0.462-3.07 1.271-0.808 0.805-1.27 1.926-1.27 3.069v10.846c0 2.396 1.948 4.344 4.419 4.344h3.066l7.217 5.602c0.759 0.584 1.702 0.905 2.655 0.905 0.661 0 1.321-0.152 1.911-0.441 1.502-0.736 2.432-2.23 2.432-3.901v-23.869c-0.003-1.671-0.933-3.163-2.433-3.897zm0.435 27.765c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.83c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.312 2.104v23.863h0.001z"/>
410+ </g>
411+ </g>
412+</g>
413+<path id="path2701" fill="url(#linearGradient2680)" d="m19.702 10.947v23.864c0 0.898-0.508 1.711-1.312 2.105-0.328 0.16-0.68 0.238-1.031 0.238-0.51 0-1.016-0.166-1.435-0.49l-7.754-6.017h-3.75-0.08c-1.293 0-2.342-1.049-2.342-2.344v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.708-0.549 1.662-0.647 2.467-0.253s1.312 1.206 1.313 2.103z"/><path id="path2693" opacity=".5" fill="#fff" d="m8.653 31.022l7.27 5.643c0.163 0.126 0.342 0.221 0.527 0.299l-7.654-5.941h-0.143v-0.001z"/><path id="path2691" opacity=".5" fill="#fff" d="m15.922 9.097l-7.75 6.016-3.832 0.001c-0.617 0-1.219 0.25-1.656 0.687-0.436 0.436-0.686 1.039-0.686 1.655v10.847c0 0.991 0.617 1.834 1.486 2.177-0.521-0.43-0.861-1.072-0.861-1.802v-10.847c0-0.617 0.25-1.22 0.686-1.655 0.437-0.437 1.039-0.687 1.656-0.687l3.832-0.001 7.75-6.016c0.669-0.519 1.554-0.619 2.329-0.298-0.148-0.126-0.307-0.242-0.487-0.33-0.805-0.394-1.758-0.297-2.467 0.253z"/><g id="g2711" opacity=".3"><path id="path256" fill="url(#linearGradient2680)" d="m26.676 33.917c0.076 0.074 0.18 0.117 0.287 0.117h0.008c0.109-0.002 0.215-0.051 0.289-0.131l0.844-0.92c2.688-2.926 4.068-6.51 4.068-10.104v-0.011-0.004-0.003c0-3.591-1.387-7.167-4.068-10.086l-0.844-0.919c-0.074-0.081-0.18-0.128-0.289-0.131-0.109-0.002-0.217 0.041-0.295 0.119l-0.881 0.882c-0.346 0.345-0.518 0.517-0.863 0.862l-0.807 0.806c-0.152 0.153-0.158 0.398-0.012 0.558l0.766 0.843c1.949 2.147 2.875 4.62 2.878 7.084-0.004 2.464-0.93 4.937-2.878 7.083l-0.766 0.844c-0.146 0.158-0.141 0.404 0.012 0.557l0.807 0.807c0.345 0.346 0.517 0.518 0.863 0.863l0.881 0.884z"/><path id="path2689" opacity=".5" fill="#fff" d="m25.504 30.338c1.949-2.146 2.875-4.619 2.879-7.083-0.004-2.465-0.93-4.938-2.879-7.084l-0.765-0.843c-0.146-0.16-0.141-0.405 0.012-0.558l0.806-0.806c0.346-0.345 0.518-0.518 0.863-0.862l0.881-0.882c0.055-0.054 0.125-0.084 0.199-0.101l-0.24-0.262c-0.074-0.081-0.18-0.128-0.289-0.131-0.109-0.002-0.217 0.041-0.295 0.119l-0.881 0.882c-0.346 0.345-0.518 0.517-0.863 0.862l-0.807 0.806c-0.152 0.153-0.158 0.398-0.012 0.558l0.766 0.843c1.949 2.147 2.875 4.62 2.878 7.084-0.004 2.464-0.93 4.937-2.878 7.083l-0.766 0.844c-0.146 0.158-0.141 0.404 0.012 0.557l0.807 0.807c0.345 0.346 0.517 0.518 0.863 0.863l0.881 0.883c0.076 0.074 0.18 0.117 0.287 0.117h0.008c0.021 0 0.039-0.01 0.06-0.014l-0.61-0.611-0.863-0.863-0.806-0.807c-0.152-0.152-0.158-0.398-0.012-0.557l0.764-0.844z"/></g><g id="g2703" opacity=".3"><path id="path2699" fill="url(#linearGradient2680)" d="m36.48 43.641c0.076 0.076 0.178 0.119 0.285 0.119h0.006c0.109-0.002 0.213-0.047 0.287-0.125l0.904-0.955c5.342-5.629 8.035-12.717 8.035-19.801v-0.008-0.008c0-7.08-2.697-14.16-8.035-19.785l-0.904-0.954c-0.074-0.079-0.177-0.124-0.287-0.125-0.109-0.001-0.215 0.041-0.291 0.119l-0.93 0.929c-0.412 0.413-0.619 0.619-1.031 1.032l-0.881 0.88c-0.154 0.154-0.156 0.405-0.008 0.563l0.855 0.904c4.482 4.746 6.688 10.614 6.689 16.487-0.002 5.845-2.221 11.689-6.689 16.419l-0.855 0.904c-0.15 0.16-0.146 0.41 0.008 0.564l0.881 0.879c0.412 0.414 0.619 0.621 1.031 1.033l0.93 0.929z"/><path id="path2687" opacity=".5" fill="#fff" d="m35.145 42.055l-0.881-0.879c-0.154-0.154-0.158-0.404-0.008-0.564l0.855-0.904c4.469-4.73 6.688-10.574 6.689-16.419-0.002-5.874-2.207-11.741-6.689-16.487l-0.855-0.904c-0.148-0.159-0.146-0.409 0.008-0.563l0.881-0.88c0.412-0.413 0.619-0.62 1.031-1.032l0.93-0.929c0.056-0.056 0.128-0.086 0.204-0.103l-0.251-0.265c-0.075-0.081-0.178-0.126-0.288-0.127s-0.214 0.041-0.291 0.118l-0.93 0.929c-0.412 0.413-0.619 0.619-1.031 1.032l-0.881 0.88c-0.154 0.154-0.156 0.405-0.008 0.563l0.855 0.904c4.482 4.746 6.688 10.614 6.689 16.487-0.002 5.845-2.221 11.689-6.689 16.419l-0.855 0.904c-0.15 0.16-0.146 0.41 0.008 0.564l0.881 0.879c0.412 0.414 0.619 0.621 1.031 1.033l0.93 0.928c0.076 0.076 0.178 0.119 0.285 0.119h0.006c0.022 0 0.042-0.01 0.063-0.014l-0.659-0.658c-0.411-0.41-0.618-0.617-1.03-1.031z"/></g><g id="g2707" opacity=".3"><path id="path2697" fill="url(#linearGradient2680)" d="m31.533 38.741c0.076 0.076 0.18 0.119 0.287 0.119h0.006c0.109-0.002 0.215-0.049 0.289-0.129l0.885-0.945c4-4.268 6.033-9.582 6.033-14.899v-0.007-0.008c0-5.316-2.033-10.631-6.033-14.899l-0.885-0.946c-0.074-0.08-0.18-0.126-0.289-0.128-0.109-0.001-0.215 0.041-0.291 0.119l-0.918 0.916c-0.387 0.388-0.58 0.582-0.967 0.969l-0.857 0.855c-0.154 0.154-0.158 0.402-0.01 0.562l0.826 0.886c3.184 3.422 4.74 7.551 4.742 11.68-0.002 4.123-1.561 8.248-4.744 11.667l-0.824 0.887c-0.148 0.158-0.145 0.406 0.01 0.561l0.857 0.855c0.387 0.389 0.58 0.582 0.967 0.969l0.916 0.916z"/><path id="path262" opacity=".5" fill="#fff" d="m30.275 37.231l-0.857-0.855c-0.154-0.154-0.158-0.402-0.01-0.561l0.824-0.887c3.184-3.42 4.742-7.545 4.744-11.667-0.002-4.129-1.559-8.258-4.742-11.68l-0.826-0.886c-0.148-0.16-0.145-0.407 0.01-0.562l0.857-0.855c0.387-0.387 0.58-0.581 0.967-0.969l0.918-0.916c0.055-0.056 0.126-0.086 0.202-0.102l-0.247-0.264c-0.074-0.08-0.18-0.126-0.289-0.128-0.109-0.001-0.215 0.041-0.291 0.119l-0.918 0.916c-0.387 0.388-0.58 0.582-0.967 0.969l-0.857 0.855c-0.154 0.154-0.158 0.402-0.01 0.562l0.826 0.886c3.184 3.422 4.74 7.551 4.742 11.68-0.002 4.123-1.561 8.248-4.744 11.667l-0.824 0.887c-0.148 0.158-0.145 0.406 0.01 0.561l0.857 0.855c0.387 0.389 0.58 0.582 0.967 0.969l0.916 0.916c0.076 0.076 0.18 0.119 0.287 0.119h0.006c0.021 0 0.041-0.01 0.062-0.014l-0.646-0.646c-0.387-0.387-0.58-0.58-0.967-0.969z"/></g>
414+</svg>
415
416=== added file 'Notifications/graphics/notification-device-eject.svg'
417--- Notifications/graphics/notification-device-eject.svg 1970-01-01 00:00:00 +0000
418+++ Notifications/graphics/notification-device-eject.svg 2013-04-04 07:15:30 +0000
419@@ -0,0 +1,26 @@
420+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
421+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
422+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 43.016" xml:space="preserve" height="48" width="48" version="1.0" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 47.998 43.016"><metadata id="metadata263"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata>
423+<g id="Layer_2">
424+ <g id="g238" opacity=".3">
425+ <g id="g240">
426+ <path id="path242" d="m3.685 28.018h40.646c1.195-0.013 2.268-0.73 2.73-1.822 0.47-1.098 0.243-2.368-0.56-3.221l-20.265-21.978c-0.569-0.634-1.381-0.997-2.231-0.997-0.194 0-0.386 0.019-0.551 0.049-0.644 0.118-1.242 0.448-1.678 0.926l-20.264 21.983c-0.815 0.865-1.044 2.132-0.578 3.239 0.471 1.095 1.542 1.808 2.751 1.821zm-0.718-3.687l20.281-22c0.148-0.163 0.346-0.273 0.562-0.312 0.346-0.068 0.701 0.05 0.938 0.312l20.281 22c0.273 0.289 0.35 0.713 0.193 1.079s-0.514 0.605-0.912 0.608h-40.624c-0.398-0.003-0.756-0.242-0.913-0.608-0.155-0.367-0.079-0.79 0.194-1.079zm42.033 5.688h-42.002c-1.653 0-2.998 1.346-2.998 2.998v7.001c0 1.653 1.345 2.998 2.998 2.998h42.002c1.652 0 2.998-1.345 2.998-2.998v-7.001c0-1.652-1.346-2.998-2.998-2.998zm0.999 9.999c0 0.553-0.447 1-1 1h-42c-0.552 0-1-0.447-1-1v-7c0-0.553 0.448-1 1-1h42c0.553 0 1 0.447 1 1v7z"/>
427+ </g>
428+ </g>
429+</g>
430+<g id="Layer_1">
431+ <linearGradient id="SVGID_1_" y2="5.6741" gradientUnits="userSpaceOnUse" x2="8.1525" y1="55.945" x1="37.176">
432+ <stop id="stop246" stop-color="#666" offset="0"/>
433+ <stop id="stop248" stop-color="#B6B6B6" offset=".5615"/>
434+ <stop id="stop250" stop-color="#fff" offset="1"/>
435+ </linearGradient>
436+ <path id="path252" fill="url(#SVGID_1_)" d="m44.999 32.018h-42c-0.552 0-1 0.447-1 1v7c0 0.553 0.448 1 1 1h42c0.553 0 1-0.447 1-1v-7c0-0.553-0.448-1-1-1zm-41.313-6h40.625c0.398-0.003 0.756-0.242 0.912-0.608s0.08-0.79-0.193-1.079l-20.281-22c-0.236-0.262-0.592-0.381-0.938-0.312-0.217 0.04-0.415 0.149-0.562 0.312l-20.281 22c-0.273 0.289-0.35 0.713-0.194 1.079s0.514 0.605 0.912 0.608z"/>
437+ <path id="path3302_2_" fill-opacity=".14850" d="m2.842 24.518c-0.159 0.27-0.188 0.609-0.062 0.906 0.156 0.366 0.508 0.591 0.906 0.594h40.625c0.398-0.003 0.75-0.228 0.906-0.594 0.126-0.297 0.097-0.637-0.062-0.906-0.175 0.309-0.484 0.497-0.844 0.5h-40.625c-0.36-0.003-0.669-0.191-0.844-0.5z"/>
438+ <rect id="rect3406_2_" opacity=".4" fill-opacity="0.198" height="1" width="42" y="40.018" x="2.999" enable-background="new "/>
439+</g>
440+<g id="Layer_3">
441+</g>
442+<g id="Layer_4">
443+ <path id="path258" opacity=".4" fill="#fff" d="m3.686 26.018h0.017c0-0.251 0.085-0.498 0.264-0.688l20.281-22c0.148-0.163 0.346-0.273 0.562-0.312 0.234-0.046 0.471 0 0.674 0.112l-0.736-0.799c-0.236-0.262-0.592-0.381-0.938-0.312-0.217 0.04-0.415 0.149-0.562 0.312l-20.281 22c-0.273 0.289-0.35 0.713-0.194 1.079 0.157 0.366 0.515 0.605 0.913 0.608zm41.313 6h-42c-0.552 0-1 0.447-1 1v7c0 0.553 0.448 1 1 1v-7c0-0.553 0.448-1 1-1h42c0-0.553-0.448-1-1-1z"/>
444+</g>
445+</svg>
446
447=== added file 'Notifications/graphics/notification-display-brightness-full.svg'
448--- Notifications/graphics/notification-display-brightness-full.svg 1970-01-01 00:00:00 +0000
449+++ Notifications/graphics/notification-display-brightness-full.svg 2013-04-04 07:15:30 +0000
450@@ -0,0 +1,24 @@
451+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
452+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
453+<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
454+<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" height="48px" width="47.998px" version="1.1" y="0px" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 48" enable-background="new 0 0 47.998 48">
455+<g id="Layer_2">
456+ <g opacity=".3">
457+ <path d="m46.643 20.844c-0.885-0.887-1.987-1.355-3.186-1.355h-5.419c-1.066 0-2.059 0.371-2.878 1.069-0.215-0.7-0.495-1.37-0.832-2.006 1.081-0.091 2.045-0.532 2.809-1.292l3.827-3.834c0.84-0.84 1.296-1.936 1.316-3.223-0.01-1.24-0.466-2.344-1.312-3.186-0.849-0.852-1.952-1.308-3.244-1.318-1.242 0.021-2.34 0.472-3.173 1.308l-3.838 3.836c-0.752 0.753-1.189 1.716-1.279 2.816-0.628-0.33-1.288-0.607-1.978-0.821 0.693-0.825 1.057-1.816 1.057-2.883v-5.422c0-1.188-0.454-2.286-1.352-3.21-0.88-0.867-1.979-1.323-3.179-1.323-1.199 0-2.3 0.456-3.223 1.362-0.863 0.896-1.318 1.993-1.318 3.171v5.422c0 1.057 0.363 2.043 1.075 2.891-0.681 0.212-1.335 0.487-1.956 0.817-0.086-1.066-0.528-2.024-1.292-2.79l-3.828-3.828c-0.85-0.852-1.952-1.306-3.221-1.316-1.247 0.011-2.351 0.465-3.191 1.307-0.848 0.844-1.302 1.95-1.312 3.232 0.01 1.238 0.464 2.34 1.314 3.19l3.828 3.828c0.766 0.768 1.727 1.211 2.798 1.293-0.33 0.627-0.604 1.29-0.817 1.977-0.815-0.693-1.808-1.058-2.889-1.058h-5.408c-1.201 0-2.303 0.458-3.207 1.347-0.873 0.884-1.335 1.986-1.335 3.187 0 1.196 0.46 2.299 1.36 3.211 0.881 0.866 1.983 1.322 3.182 1.322h5.408c1.089 0 2.088-0.369 2.905-1.071 0.208 0.669 0.477 1.311 0.798 1.921-1.069 0.089-2.026 0.528-2.786 1.288l-3.821 3.827c-0.848 0.847-1.3 1.95-1.31 3.211 0 1.248 0.454 2.36 1.306 3.211 0.852 0.854 1.96 1.306 3.208 1.306h0.022c1.244-0.015 2.346-0.466 3.19-1.311l3.828-3.829c0.762-0.766 1.199-1.725 1.284-2.773 0.615 0.324 1.263 0.595 1.935 0.807-0.701 0.819-1.068 1.81-1.068 2.894v5.412c0 1.192 0.46 2.294 1.345 3.196 0.881 0.882 1.987 1.346 3.196 1.346 1.203 0 2.305-0.464 3.198-1.357 0.873-0.887 1.333-1.989 1.333-3.186v-5.412c0-1.088-0.371-2.084-1.059-2.883 0.686-0.213 1.344-0.487 1.969-0.817 0.085 1.092 0.524 2.062 1.285 2.818l3.836 3.841c0.853 0.848 1.96 1.295 3.202 1.295h0.035c1.232 0 2.332-0.447 3.182-1.3 0.858-0.858 1.307-1.975 1.296-3.212 0-1.255-0.447-2.367-1.293-3.213l-3.83-3.832c-0.751-0.755-1.711-1.192-2.814-1.281 0.33-0.623 0.606-1.277 0.821-1.962 0.827 0.705 1.819 1.074 2.895 1.074h5.419c1.2 0 2.303-0.464 3.171-1.33 0.897-0.877 1.37-1.987 1.37-3.211 0-1.217-0.473-2.325-1.355-3.188zm-34.92 4.97c-0.498 0.507-1.095 0.752-1.773 0.752h-5.409c-0.679 0-1.267-0.245-1.782-0.752-0.506-0.516-0.76-1.113-0.76-1.783 0-0.679 0.253-1.268 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678 0 1.275 0.245 1.773 0.751 0.516 0.516 0.769 1.104 0.769 1.783-0.001 0.67-0.254 1.268-0.77 1.783zm9.717-21.28c0-0.679 0.262-1.267 0.76-1.783 0.515-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.498 0.516 0.751 1.104 0.751 1.783v5.422c0 0.67-0.253 1.268-0.751 1.774-0.516 0.507-1.104 0.76-1.782 0.76s-1.267-0.253-1.782-0.76c-0.498-0.507-0.76-1.104-0.76-1.774v-5.422zm-9.17 11.337l-3.825-3.827c-0.479-0.48-0.723-1.069-0.729-1.792 0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.48 0.48 0.729 1.075 0.723 1.786 0 0.729-0.236 1.325-0.716 1.805-0.473 0.473-1.075 0.717-1.804 0.717-0.71 0.005-1.305-0.245-1.785-0.725zm3.603 19.836l-3.825 3.827c-0.48 0.48-1.075 0.717-1.797 0.724-0.717 0-1.318-0.243-1.791-0.717-0.48-0.479-0.723-1.082-0.723-1.799 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.473 0.474 0.716 1.075 0.71 1.799 0.005 0.711-0.238 1.312-0.717 1.792zm10.642 7.749c0 0.68-0.253 1.268-0.76 1.784-0.507 0.507-1.104 0.76-1.773 0.76-0.678 0-1.275-0.253-1.782-0.76-0.506-0.517-0.76-1.104-0.76-1.784v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.507 0.498 0.76 1.096 0.76 1.774v5.412zm-2.516-9.77c-5.346 0-9.679-4.337-9.679-9.686s4.333-9.685 9.679-9.685 9.679 4.336 9.679 9.685-4.333 9.686-9.679 9.686zm11.721-1.533l3.831 3.834c0.48 0.48 0.71 1.082 0.71 1.799 0.007 0.723-0.236 1.325-0.71 1.799-0.479 0.479-1.081 0.723-1.804 0.716-0.716 0-1.311-0.236-1.791-0.716l-3.831-3.835c-0.48-0.479-0.717-1.074-0.717-1.792-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.231 1.798 0.71zm-1.783-15.583c-0.724-0.006-1.318-0.244-1.798-0.724s-0.717-1.075-0.723-1.799c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.48 0.48 0.724 1.069 0.729 1.792-0.013 0.717-0.249 1.312-0.729 1.792l-3.831 3.833c-0.474 0.475-1.075 0.718-1.784 0.725zm11.292 9.244c-0.507 0.507-1.095 0.761-1.772 0.761h-5.419c-0.679 0-1.267-0.254-1.773-0.761-0.516-0.506-0.76-1.104-0.76-1.783 0-0.67 0.244-1.268 0.76-1.774 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.516 0.506 0.77 1.104 0.77 1.774 0 0.679-0.254 1.278-0.77 1.783z"/>
458+ </g>
459+</g>
460+<g id="Layer_1">
461+ <linearGradient id="SVGID_1_" y2="2.0005" gradientUnits="userSpaceOnUse" x2="23.999" y1="46" x1="23.999">
462+ <stop stop-color="#9B9B9B" offset="0"/>
463+ <stop stop-color="#ECECEC" offset="1"/>
464+ </linearGradient>
465+ <path d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685s4.333 9.686 9.679 9.686 9.679-4.337 9.679-9.686-4.333-9.685-9.679-9.685zm-12.276 11.499c0.516-0.516 0.769-1.113 0.769-1.783 0-0.679-0.253-1.268-0.769-1.783-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.669 0.253 1.267 0.76 1.783 0.516 0.507 1.104 0.752 1.782 0.752h5.41c0.678 0 1.276-0.245 1.773-0.752zm0.547-9.943c0.48 0.48 1.075 0.73 1.785 0.724 0.729 0 1.331-0.244 1.804-0.717 0.48-0.48 0.716-1.076 0.716-1.805 0.006-0.711-0.243-1.306-0.723-1.786l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.006 0.723 0.25 1.312 0.729 1.792l3.826 3.828zm21.667 0.699c0.71-0.006 1.311-0.25 1.784-0.724l3.831-3.833c0.48-0.48 0.717-1.076 0.729-1.792-0.006-0.723-0.249-1.312-0.729-1.792-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.006 0.724 0.243 1.319 0.723 1.799s1.074 0.716 1.798 0.723zm-9.955-4.079c0.678 0 1.266-0.253 1.782-0.76 0.498-0.507 0.751-1.104 0.751-1.774v-5.423c0-0.679-0.253-1.267-0.751-1.783-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.67 0.262 1.268 0.76 1.774 0.515 0.507 1.104 0.761 1.782 0.761zm11.738 19.662c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.718 0.236 1.312 0.717 1.792l3.831 3.835c0.48 0.479 1.075 0.716 1.791 0.716 0.723 0.007 1.324-0.236 1.804-0.716 0.474-0.474 0.717-1.076 0.71-1.799 0-0.717-0.229-1.318-0.71-1.799l-3.831-3.834zm9.509-9.895c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.678 0.244 1.277 0.76 1.783 0.507 0.507 1.095 0.761 1.773 0.761h5.419c0.678 0 1.266-0.254 1.772-0.761 0.516-0.506 0.77-1.104 0.77-1.783 0-0.67-0.254-1.268-0.77-1.774zm-31.154 9.141c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.717 0.243 1.319 0.723 1.799 0.473 0.474 1.074 0.717 1.791 0.717 0.723-0.007 1.317-0.243 1.797-0.724l3.825-3.827c0.479-0.48 0.723-1.081 0.716-1.792 0.006-0.724-0.237-1.325-0.71-1.799-0.479-0.479-1.08-0.722-1.803-0.717zm9.907 4.101c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.68 0.253 1.268 0.76 1.784 0.507 0.507 1.104 0.76 1.782 0.76 0.669 0 1.266-0.253 1.773-0.76 0.507-0.517 0.76-1.104 0.76-1.784v-5.412c0-0.679-0.253-1.276-0.76-1.774-0.507-0.517-1.104-0.77-1.773-0.77z" fill="url(#SVGID_1_)"/>
466+</g>
467+<g id="Layer_3">
468+</g>
469+<g id="Layer_4">
470+ <g opacity=".41">
471+ <path d="m21.815 10.581v-5.422c0-0.679 0.262-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.075 0.078 0.135 0.162 0.199 0.244-0.126-0.311-0.314-0.6-0.574-0.869-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.564 0.197 1.074 0.553 1.525-0.115-0.283-0.178-0.583-0.178-0.9zm-13.724 0.295c0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.068 0.068 0.12 0.143 0.179 0.215-0.121-0.311-0.305-0.592-0.554-0.84l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.005 0.622 0.197 1.139 0.552 1.579-0.112-0.289-0.173-0.605-0.176-0.954zm23.7 3.796c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.067 0.067 0.12 0.143 0.178 0.214-0.121-0.311-0.304-0.59-0.553-0.839-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.005 0.625 0.194 1.149 0.552 1.591-0.114-0.292-0.174-0.613-0.177-0.966zm13.438 7.586c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.571 0.185 1.081 0.546 1.531-0.111-0.283-0.171-0.585-0.171-0.906 0-0.67 0.244-1.267 0.76-1.773 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.085 0.083 0.151 0.172 0.222 0.26-0.127-0.319-0.322-0.617-0.597-0.886zm-21.23-7.943c-5.346 0-9.679 4.336-9.679 9.685 0 1.918 0.564 3.701 1.526 5.206-0.733-1.364-1.151-2.924-1.151-4.581 0-5.349 4.333-9.685 9.679-9.685 3.428 0 6.433 1.789 8.153 4.479-1.633-3.038-4.839-5.104-8.528-5.104zm-0.017 21.185c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.573 0.191 1.077 0.551 1.532-0.114-0.284-0.176-0.585-0.176-0.907v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.081 0.079 0.145 0.166 0.212 0.25-0.126-0.317-0.318-0.611-0.587-0.875-0.507-0.517-1.104-0.77-1.773-0.77zm-11.884-12.626c0.084 0.084 0.15 0.173 0.22 0.261-0.127-0.317-0.322-0.613-0.595-0.886-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.565 0.191 1.075 0.552 1.531-0.115-0.285-0.177-0.587-0.177-0.906 0-0.679 0.253-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678-0.001 1.276 0.244 1.773 0.751zm23.622 9.279c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.62 0.188 1.144 0.546 1.585-0.112-0.292-0.171-0.61-0.171-0.96-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.23 1.798 0.71l3.831 3.834c0.062 0.062 0.11 0.134 0.164 0.2-0.117-0.306-0.295-0.581-0.539-0.825l-3.831-3.834zm-21.645-0.754c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.618 0.192 1.146 0.549 1.588-0.114-0.294-0.174-0.614-0.174-0.963 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.063 0.063 0.111 0.134 0.166 0.202-0.119-0.309-0.299-0.585-0.541-0.827-0.48-0.479-1.081-0.722-1.804-0.717z" fill="#fff"/>
472+ </g>
473+</g>
474+</svg>
475
476=== added file 'Notifications/graphics/notification-display-brightness-high.svg'
477--- Notifications/graphics/notification-display-brightness-high.svg 1970-01-01 00:00:00 +0000
478+++ Notifications/graphics/notification-display-brightness-high.svg 2013-04-04 07:15:30 +0000
479@@ -0,0 +1,17 @@
480+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
481+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
482+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 48" xml:space="preserve" height="48px" width="47.998px" version="1.1" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 48" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata263"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs261">
483+ <linearGradient id="linearGradient2649" y2="2.0005" gradientUnits="userSpaceOnUse" x2="23.999" y1="46" x1="23.999"><stop id="stop248" stop-color="#9B9B9B" offset="0"/><stop id="stop250" stop-color="#ECECEC" offset="1"/></linearGradient>
484+ </defs>
485+<g id="Layer_2">
486+ <g id="g238" opacity=".3">
487+ <g id="g240">
488+ <path id="path242" d="m46.643 20.844c-0.885-0.887-1.987-1.355-3.186-1.355h-5.419c-1.066 0-2.059 0.371-2.878 1.069-0.215-0.7-0.495-1.37-0.832-2.006 1.081-0.091 2.045-0.532 2.809-1.292l3.827-3.834c0.84-0.84 1.296-1.936 1.316-3.223-0.01-1.24-0.466-2.344-1.312-3.186-0.849-0.852-1.952-1.308-3.244-1.318-1.242 0.021-2.34 0.472-3.173 1.308l-3.838 3.836c-0.752 0.753-1.189 1.716-1.279 2.816-0.628-0.33-1.288-0.607-1.978-0.821 0.693-0.825 1.057-1.816 1.057-2.883v-5.422c0-1.188-0.454-2.286-1.352-3.21-0.88-0.867-1.979-1.323-3.179-1.323-1.199 0-2.3 0.456-3.223 1.362-0.863 0.896-1.318 1.993-1.318 3.171v5.422c0 1.057 0.363 2.043 1.075 2.891-0.681 0.212-1.335 0.487-1.956 0.817-0.086-1.066-0.528-2.024-1.292-2.79l-3.828-3.828c-0.85-0.852-1.952-1.306-3.221-1.316-1.247 0.011-2.351 0.465-3.191 1.307-0.848 0.844-1.302 1.95-1.312 3.232 0.01 1.238 0.464 2.34 1.314 3.19l3.828 3.828c0.766 0.768 1.727 1.211 2.798 1.293-0.33 0.627-0.604 1.29-0.817 1.977-0.815-0.693-1.808-1.058-2.889-1.058h-5.408c-1.201 0-2.303 0.458-3.207 1.347-0.873 0.884-1.335 1.986-1.335 3.187 0 1.196 0.46 2.299 1.36 3.211 0.881 0.866 1.983 1.322 3.182 1.322h5.408c1.089 0 2.088-0.369 2.905-1.071 0.208 0.669 0.477 1.311 0.798 1.921-1.069 0.089-2.026 0.528-2.786 1.288l-3.821 3.827c-0.848 0.847-1.3 1.95-1.31 3.211 0 1.248 0.454 2.36 1.306 3.211 0.852 0.854 1.96 1.306 3.208 1.306h0.022c1.244-0.015 2.346-0.466 3.19-1.311l3.828-3.829c0.762-0.766 1.199-1.725 1.284-2.773 0.615 0.324 1.263 0.595 1.935 0.807-0.701 0.819-1.068 1.81-1.068 2.894v5.412c0 1.192 0.46 2.294 1.345 3.196 0.881 0.882 1.987 1.346 3.196 1.346 1.203 0 2.305-0.464 3.198-1.357 0.873-0.887 1.333-1.989 1.333-3.186v-5.412c0-1.088-0.371-2.084-1.059-2.883 0.686-0.213 1.344-0.487 1.969-0.817 0.085 1.092 0.524 2.062 1.285 2.818l3.836 3.841c0.853 0.848 1.96 1.295 3.202 1.295h0.035c1.232 0 2.332-0.447 3.182-1.3 0.858-0.858 1.307-1.975 1.296-3.212 0-1.255-0.447-2.367-1.293-3.213l-3.83-3.832c-0.751-0.755-1.711-1.192-2.814-1.281 0.33-0.623 0.606-1.277 0.821-1.962 0.827 0.705 1.819 1.074 2.895 1.074h5.419c1.2 0 2.303-0.464 3.171-1.33 0.897-0.877 1.37-1.987 1.37-3.211 0-1.217-0.473-2.325-1.355-3.188zm-34.92 4.97c-0.498 0.507-1.095 0.752-1.773 0.752h-5.409c-0.679 0-1.267-0.245-1.782-0.752-0.506-0.516-0.76-1.113-0.76-1.783 0-0.679 0.253-1.268 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678 0 1.275 0.245 1.773 0.751 0.516 0.516 0.769 1.104 0.769 1.783-0.001 0.67-0.254 1.268-0.77 1.783zm9.717-21.28c0-0.679 0.262-1.267 0.76-1.783 0.515-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.498 0.516 0.751 1.104 0.751 1.783v5.422c0 0.67-0.253 1.268-0.751 1.774-0.516 0.507-1.104 0.76-1.782 0.76s-1.267-0.253-1.782-0.76c-0.498-0.507-0.76-1.104-0.76-1.774v-5.422zm-9.17 11.337l-3.825-3.827c-0.479-0.48-0.723-1.069-0.729-1.792 0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.48 0.48 0.729 1.075 0.723 1.786 0 0.729-0.236 1.325-0.716 1.805-0.473 0.473-1.075 0.717-1.804 0.717-0.71 0.005-1.305-0.245-1.785-0.725zm3.603 19.836l-3.825 3.827c-0.48 0.48-1.075 0.717-1.797 0.724-0.717 0-1.318-0.243-1.791-0.717-0.48-0.479-0.723-1.082-0.723-1.799 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.473 0.474 0.716 1.075 0.71 1.799 0.005 0.711-0.238 1.312-0.717 1.792zm10.642 7.749c0 0.68-0.253 1.268-0.76 1.784-0.507 0.507-1.104 0.76-1.773 0.76-0.678 0-1.275-0.253-1.782-0.76-0.506-0.517-0.76-1.104-0.76-1.784v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.507 0.498 0.76 1.096 0.76 1.774v5.412zm-2.516-9.77c-5.346 0-9.679-4.337-9.679-9.686s4.333-9.685 9.679-9.685 9.679 4.336 9.679 9.685-4.333 9.686-9.679 9.686zm11.721-1.533l3.831 3.834c0.48 0.48 0.71 1.082 0.71 1.799 0.007 0.723-0.236 1.325-0.71 1.799-0.479 0.479-1.081 0.723-1.804 0.716-0.716 0-1.311-0.236-1.791-0.716l-3.831-3.835c-0.48-0.479-0.717-1.074-0.717-1.792-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.231 1.798 0.71zm-1.783-15.583c-0.724-0.006-1.318-0.244-1.798-0.724s-0.717-1.075-0.723-1.799c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.48 0.48 0.724 1.069 0.729 1.792-0.013 0.717-0.249 1.312-0.729 1.792l-3.831 3.833c-0.474 0.475-1.075 0.718-1.784 0.725zm11.292 9.244c-0.507 0.507-1.095 0.761-1.772 0.761h-5.419c-0.679 0-1.267-0.254-1.773-0.761-0.516-0.506-0.76-1.104-0.76-1.783 0-0.67 0.244-1.268 0.76-1.774 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.516 0.506 0.77 1.104 0.77 1.774 0 0.679-0.254 1.278-0.77 1.783z"/>
489+ </g>
490+ </g>
491+</g>
492+<path id="path2700" fill="url(#linearGradient2649)" d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685s4.333 9.686 9.679 9.686 9.679-4.337 9.679-9.686-4.333-9.685-9.679-9.685z"/>
493+<g id="Layer_3">
494+</g>
495+<path id="path2664" opacity="0.41" fill="#fff" d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685 0 1.918 0.564 3.701 1.526 5.206-0.733-1.364-1.151-2.924-1.151-4.581 0-5.349 4.333-9.685 9.679-9.685 3.428 0 6.433 1.789 8.153 4.479-1.633-3.038-4.839-5.104-8.528-5.104z"/><g id="g2712" opacity=".85"><g id="g2702" fill="url(#linearGradient2649)"><path id="path2698" d="m11.723 25.814c0.516-0.516 0.769-1.113 0.769-1.783 0-0.679-0.253-1.268-0.769-1.783-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.669 0.253 1.267 0.76 1.783 0.516 0.507 1.104 0.752 1.782 0.752h5.41c0.678 0 1.276-0.245 1.773-0.752z"/><path id="path2696" d="m12.27 15.871c0.48 0.48 1.075 0.73 1.785 0.724 0.729 0 1.331-0.244 1.804-0.717 0.48-0.48 0.716-1.076 0.716-1.805 0.006-0.711-0.243-1.306-0.723-1.786l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.006 0.723 0.25 1.312 0.729 1.792l3.826 3.828z"/><path id="path2694" d="m33.937 16.57c0.71-0.006 1.311-0.25 1.784-0.724l3.831-3.833c0.48-0.48 0.717-1.076 0.729-1.792-0.006-0.723-0.249-1.312-0.729-1.792-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.006 0.724 0.243 1.319 0.723 1.799s1.074 0.716 1.798 0.723z"/><path id="path2692" d="m23.982 12.491c0.678 0 1.266-0.253 1.782-0.76 0.498-0.507 0.751-1.104 0.751-1.774v-5.423c0-0.679-0.253-1.267-0.751-1.783-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.67 0.262 1.268 0.76 1.774 0.515 0.507 1.104 0.761 1.782 0.761z"/><path id="path2690" d="m35.72 32.153c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.718 0.236 1.312 0.717 1.792l3.831 3.835c0.48 0.479 1.075 0.716 1.791 0.716 0.723 0.007 1.324-0.236 1.804-0.716 0.474-0.474 0.717-1.076 0.71-1.799 0-0.717-0.229-1.318-0.71-1.799l-3.831-3.834z"/><path id="path2688" d="m45.229 22.258c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.678 0.244 1.277 0.76 1.783 0.507 0.507 1.095 0.761 1.773 0.761h5.419c0.678 0 1.266-0.254 1.772-0.761 0.516-0.506 0.77-1.104 0.77-1.783 0-0.67-0.254-1.268-0.77-1.774z"/><path id="path2686" d="m14.075 31.399c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.717 0.243 1.319 0.723 1.799 0.473 0.474 1.074 0.717 1.791 0.717 0.723-0.007 1.317-0.243 1.797-0.724l3.825-3.827c0.479-0.48 0.723-1.081 0.716-1.792 0.006-0.724-0.237-1.325-0.71-1.799-0.479-0.479-1.08-0.722-1.803-0.717z"/><path id="path252" d="m23.982 35.5c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.68 0.253 1.268 0.76 1.784 0.507 0.507 1.104 0.76 1.782 0.76 0.669 0 1.266-0.253 1.773-0.76 0.507-0.517 0.76-1.104 0.76-1.784v-5.412c0-0.679-0.253-1.276-0.76-1.774-0.507-0.517-1.104-0.77-1.773-0.77z"/></g><g id="g2674" fill="#fff"><path id="path2672" opacity="0.41" d="m21.815 10.581v-5.422c0-0.679 0.262-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.075 0.078 0.135 0.162 0.199 0.244-0.126-0.311-0.314-0.6-0.574-0.869-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.564 0.197 1.074 0.553 1.525-0.115-0.283-0.178-0.583-0.178-0.9z"/><path id="path2670" opacity="0.41" d="m8.091 10.876c0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.068 0.068 0.12 0.143 0.179 0.215-0.121-0.311-0.305-0.592-0.554-0.84l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.005 0.622 0.197 1.139 0.552 1.579-0.112-0.289-0.173-0.605-0.176-0.954z"/><path id="path2668" opacity="0.41" d="m31.791 14.672c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.067 0.067 0.12 0.143 0.178 0.214-0.121-0.311-0.304-0.59-0.553-0.839-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.005 0.625 0.194 1.149 0.552 1.591-0.114-0.292-0.174-0.613-0.177-0.966z"/><path id="path2666" opacity="0.41" d="m45.229 22.258c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.571 0.185 1.081 0.546 1.531-0.111-0.283-0.171-0.585-0.171-0.906 0-0.67 0.244-1.267 0.76-1.773 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.085 0.083 0.151 0.172 0.222 0.26-0.127-0.319-0.322-0.617-0.597-0.886z"/><path id="path2662" opacity="0.41" d="m23.982 35.5c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.573 0.191 1.077 0.551 1.532-0.114-0.284-0.176-0.585-0.176-0.907v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.081 0.079 0.145 0.166 0.212 0.25-0.126-0.317-0.318-0.611-0.587-0.875-0.507-0.517-1.104-0.77-1.773-0.77z"/><path id="path2660" opacity="0.41" d="m12.098 22.874c0.084 0.084 0.15 0.173 0.22 0.261-0.127-0.317-0.322-0.613-0.595-0.886-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.565 0.191 1.075 0.552 1.531-0.115-0.285-0.177-0.587-0.177-0.906 0-0.679 0.253-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678-0.001 1.276 0.244 1.773 0.751z"/><path id="path2658" opacity="0.41" d="m35.72 32.153c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.62 0.188 1.144 0.546 1.585-0.112-0.292-0.171-0.61-0.171-0.96-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.23 1.798 0.71l3.831 3.834c0.062 0.062 0.11 0.134 0.164 0.2-0.117-0.306-0.295-0.581-0.539-0.825l-3.831-3.834z"/><path id="path258" opacity="0.41" d="m14.075 31.399c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.618 0.192 1.146 0.549 1.588-0.114-0.294-0.174-0.614-0.174-0.963 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.063 0.063 0.111 0.134 0.166 0.202-0.119-0.309-0.299-0.585-0.541-0.827-0.48-0.479-1.081-0.722-1.804-0.717z"/></g></g>
496+</svg>
497
498=== added file 'Notifications/graphics/notification-display-brightness-low.svg'
499--- Notifications/graphics/notification-display-brightness-low.svg 1970-01-01 00:00:00 +0000
500+++ Notifications/graphics/notification-display-brightness-low.svg 2013-04-04 07:15:30 +0000
501@@ -0,0 +1,17 @@
502+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
503+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
504+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 48" xml:space="preserve" height="48px" width="47.998px" version="1.1" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 48" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata263"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs261">
505+ <linearGradient id="linearGradient2649" y2="2.0005" gradientUnits="userSpaceOnUse" x2="23.999" y1="46" x1="23.999"><stop id="stop248" stop-color="#9B9B9B" offset="0"/><stop id="stop250" stop-color="#ECECEC" offset="1"/></linearGradient>
506+ </defs>
507+<g id="Layer_2">
508+ <g id="g238" opacity=".3">
509+ <g id="g240">
510+ <path id="path242" d="m46.643 20.844c-0.885-0.887-1.987-1.355-3.186-1.355h-5.419c-1.066 0-2.059 0.371-2.878 1.069-0.215-0.7-0.495-1.37-0.832-2.006 1.081-0.091 2.045-0.532 2.809-1.292l3.827-3.834c0.84-0.84 1.296-1.936 1.316-3.223-0.01-1.24-0.466-2.344-1.312-3.186-0.849-0.852-1.952-1.308-3.244-1.318-1.242 0.021-2.34 0.472-3.173 1.308l-3.838 3.836c-0.752 0.753-1.189 1.716-1.279 2.816-0.628-0.33-1.288-0.607-1.978-0.821 0.693-0.825 1.057-1.816 1.057-2.883v-5.422c0-1.188-0.454-2.286-1.352-3.21-0.88-0.867-1.979-1.323-3.179-1.323-1.199 0-2.3 0.456-3.223 1.362-0.863 0.896-1.318 1.993-1.318 3.171v5.422c0 1.057 0.363 2.043 1.075 2.891-0.681 0.212-1.335 0.487-1.956 0.817-0.086-1.066-0.528-2.024-1.292-2.79l-3.828-3.828c-0.85-0.852-1.952-1.306-3.221-1.316-1.247 0.011-2.351 0.465-3.191 1.307-0.848 0.844-1.302 1.95-1.312 3.232 0.01 1.238 0.464 2.34 1.314 3.19l3.828 3.828c0.766 0.768 1.727 1.211 2.798 1.293-0.33 0.627-0.604 1.29-0.817 1.977-0.815-0.693-1.808-1.058-2.889-1.058h-5.408c-1.201 0-2.303 0.458-3.207 1.347-0.873 0.884-1.335 1.986-1.335 3.187 0 1.196 0.46 2.299 1.36 3.211 0.881 0.866 1.983 1.322 3.182 1.322h5.408c1.089 0 2.088-0.369 2.905-1.071 0.208 0.669 0.477 1.311 0.798 1.921-1.069 0.089-2.026 0.528-2.786 1.288l-3.821 3.827c-0.848 0.847-1.3 1.95-1.31 3.211 0 1.248 0.454 2.36 1.306 3.211 0.852 0.854 1.96 1.306 3.208 1.306h0.022c1.244-0.015 2.346-0.466 3.19-1.311l3.828-3.829c0.762-0.766 1.199-1.725 1.284-2.773 0.615 0.324 1.263 0.595 1.935 0.807-0.701 0.819-1.068 1.81-1.068 2.894v5.412c0 1.192 0.46 2.294 1.345 3.196 0.881 0.882 1.987 1.346 3.196 1.346 1.203 0 2.305-0.464 3.198-1.357 0.873-0.887 1.333-1.989 1.333-3.186v-5.412c0-1.088-0.371-2.084-1.059-2.883 0.686-0.213 1.344-0.487 1.969-0.817 0.085 1.092 0.524 2.062 1.285 2.818l3.836 3.841c0.853 0.848 1.96 1.295 3.202 1.295h0.035c1.232 0 2.332-0.447 3.182-1.3 0.858-0.858 1.307-1.975 1.296-3.212 0-1.255-0.447-2.367-1.293-3.213l-3.83-3.832c-0.751-0.755-1.711-1.192-2.814-1.281 0.33-0.623 0.606-1.277 0.821-1.962 0.827 0.705 1.819 1.074 2.895 1.074h5.419c1.2 0 2.303-0.464 3.171-1.33 0.897-0.877 1.37-1.987 1.37-3.211 0-1.217-0.473-2.325-1.355-3.188zm-34.92 4.97c-0.498 0.507-1.095 0.752-1.773 0.752h-5.409c-0.679 0-1.267-0.245-1.782-0.752-0.506-0.516-0.76-1.113-0.76-1.783 0-0.679 0.253-1.268 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678 0 1.275 0.245 1.773 0.751 0.516 0.516 0.769 1.104 0.769 1.783-0.001 0.67-0.254 1.268-0.77 1.783zm9.717-21.28c0-0.679 0.262-1.267 0.76-1.783 0.515-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.498 0.516 0.751 1.104 0.751 1.783v5.422c0 0.67-0.253 1.268-0.751 1.774-0.516 0.507-1.104 0.76-1.782 0.76s-1.267-0.253-1.782-0.76c-0.498-0.507-0.76-1.104-0.76-1.774v-5.422zm-9.17 11.337l-3.825-3.827c-0.479-0.48-0.723-1.069-0.729-1.792 0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.48 0.48 0.729 1.075 0.723 1.786 0 0.729-0.236 1.325-0.716 1.805-0.473 0.473-1.075 0.717-1.804 0.717-0.71 0.005-1.305-0.245-1.785-0.725zm3.603 19.836l-3.825 3.827c-0.48 0.48-1.075 0.717-1.797 0.724-0.717 0-1.318-0.243-1.791-0.717-0.48-0.479-0.723-1.082-0.723-1.799 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.473 0.474 0.716 1.075 0.71 1.799 0.005 0.711-0.238 1.312-0.717 1.792zm10.642 7.749c0 0.68-0.253 1.268-0.76 1.784-0.507 0.507-1.104 0.76-1.773 0.76-0.678 0-1.275-0.253-1.782-0.76-0.506-0.517-0.76-1.104-0.76-1.784v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.507 0.498 0.76 1.096 0.76 1.774v5.412zm-2.516-9.77c-5.346 0-9.679-4.337-9.679-9.686s4.333-9.685 9.679-9.685 9.679 4.336 9.679 9.685-4.333 9.686-9.679 9.686zm11.721-1.533l3.831 3.834c0.48 0.48 0.71 1.082 0.71 1.799 0.007 0.723-0.236 1.325-0.71 1.799-0.479 0.479-1.081 0.723-1.804 0.716-0.716 0-1.311-0.236-1.791-0.716l-3.831-3.835c-0.48-0.479-0.717-1.074-0.717-1.792-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.231 1.798 0.71zm-1.783-15.583c-0.724-0.006-1.318-0.244-1.798-0.724s-0.717-1.075-0.723-1.799c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.48 0.48 0.724 1.069 0.729 1.792-0.013 0.717-0.249 1.312-0.729 1.792l-3.831 3.833c-0.474 0.475-1.075 0.718-1.784 0.725zm11.292 9.244c-0.507 0.507-1.095 0.761-1.772 0.761h-5.419c-0.679 0-1.267-0.254-1.773-0.761-0.516-0.506-0.76-1.104-0.76-1.783 0-0.67 0.244-1.268 0.76-1.774 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.516 0.506 0.77 1.104 0.77 1.774 0 0.679-0.254 1.278-0.77 1.783z"/>
511+ </g>
512+ </g>
513+</g>
514+<path id="path2700" fill="url(#linearGradient2649)" d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685s4.333 9.686 9.679 9.686 9.679-4.337 9.679-9.686-4.333-9.685-9.679-9.685z"/>
515+<g id="Layer_3">
516+</g>
517+<path id="path2664" opacity="0.41" fill="#fff" d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685 0 1.918 0.564 3.701 1.526 5.206-0.733-1.364-1.151-2.924-1.151-4.581 0-5.349 4.333-9.685 9.679-9.685 3.428 0 6.433 1.789 8.153 4.479-1.633-3.038-4.839-5.104-8.528-5.104z"/><g id="g2712" opacity=".5"><g id="g2702" fill="url(#linearGradient2649)"><path id="path2698" d="m11.723 25.814c0.516-0.516 0.769-1.113 0.769-1.783 0-0.679-0.253-1.268-0.769-1.783-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.669 0.253 1.267 0.76 1.783 0.516 0.507 1.104 0.752 1.782 0.752h5.41c0.678 0 1.276-0.245 1.773-0.752z"/><path id="path2696" d="m12.27 15.871c0.48 0.48 1.075 0.73 1.785 0.724 0.729 0 1.331-0.244 1.804-0.717 0.48-0.48 0.716-1.076 0.716-1.805 0.006-0.711-0.243-1.306-0.723-1.786l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.006 0.723 0.25 1.312 0.729 1.792l3.826 3.828z"/><path id="path2694" d="m33.937 16.57c0.71-0.006 1.311-0.25 1.784-0.724l3.831-3.833c0.48-0.48 0.717-1.076 0.729-1.792-0.006-0.723-0.249-1.312-0.729-1.792-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.006 0.724 0.243 1.319 0.723 1.799s1.074 0.716 1.798 0.723z"/><path id="path2692" d="m23.982 12.491c0.678 0 1.266-0.253 1.782-0.76 0.498-0.507 0.751-1.104 0.751-1.774v-5.423c0-0.679-0.253-1.267-0.751-1.783-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.67 0.262 1.268 0.76 1.774 0.515 0.507 1.104 0.761 1.782 0.761z"/><path id="path2690" d="m35.72 32.153c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.718 0.236 1.312 0.717 1.792l3.831 3.835c0.48 0.479 1.075 0.716 1.791 0.716 0.723 0.007 1.324-0.236 1.804-0.716 0.474-0.474 0.717-1.076 0.71-1.799 0-0.717-0.229-1.318-0.71-1.799l-3.831-3.834z"/><path id="path2688" d="m45.229 22.258c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.678 0.244 1.277 0.76 1.783 0.507 0.507 1.095 0.761 1.773 0.761h5.419c0.678 0 1.266-0.254 1.772-0.761 0.516-0.506 0.77-1.104 0.77-1.783 0-0.67-0.254-1.268-0.77-1.774z"/><path id="path2686" d="m14.075 31.399c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.717 0.243 1.319 0.723 1.799 0.473 0.474 1.074 0.717 1.791 0.717 0.723-0.007 1.317-0.243 1.797-0.724l3.825-3.827c0.479-0.48 0.723-1.081 0.716-1.792 0.006-0.724-0.237-1.325-0.71-1.799-0.479-0.479-1.08-0.722-1.803-0.717z"/><path id="path252" d="m23.982 35.5c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.68 0.253 1.268 0.76 1.784 0.507 0.507 1.104 0.76 1.782 0.76 0.669 0 1.266-0.253 1.773-0.76 0.507-0.517 0.76-1.104 0.76-1.784v-5.412c0-0.679-0.253-1.276-0.76-1.774-0.507-0.517-1.104-0.77-1.773-0.77z"/></g><g id="g2674" fill="#fff"><path id="path2672" opacity="0.41" d="m21.815 10.581v-5.422c0-0.679 0.262-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.075 0.078 0.135 0.162 0.199 0.244-0.126-0.311-0.314-0.6-0.574-0.869-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.564 0.197 1.074 0.553 1.525-0.115-0.283-0.178-0.583-0.178-0.9z"/><path id="path2670" opacity="0.41" d="m8.091 10.876c0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.068 0.068 0.12 0.143 0.179 0.215-0.121-0.311-0.305-0.592-0.554-0.84l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.005 0.622 0.197 1.139 0.552 1.579-0.112-0.289-0.173-0.605-0.176-0.954z"/><path id="path2668" opacity="0.41" d="m31.791 14.672c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.067 0.067 0.12 0.143 0.178 0.214-0.121-0.311-0.304-0.59-0.553-0.839-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.005 0.625 0.194 1.149 0.552 1.591-0.114-0.292-0.174-0.613-0.177-0.966z"/><path id="path2666" opacity="0.41" d="m45.229 22.258c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.571 0.185 1.081 0.546 1.531-0.111-0.283-0.171-0.585-0.171-0.906 0-0.67 0.244-1.267 0.76-1.773 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.085 0.083 0.151 0.172 0.222 0.26-0.127-0.319-0.322-0.617-0.597-0.886z"/><path id="path2662" opacity="0.41" d="m23.982 35.5c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.573 0.191 1.077 0.551 1.532-0.114-0.284-0.176-0.585-0.176-0.907v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.081 0.079 0.145 0.166 0.212 0.25-0.126-0.317-0.318-0.611-0.587-0.875-0.507-0.517-1.104-0.77-1.773-0.77z"/><path id="path2660" opacity="0.41" d="m12.098 22.874c0.084 0.084 0.15 0.173 0.22 0.261-0.127-0.317-0.322-0.613-0.595-0.886-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.565 0.191 1.075 0.552 1.531-0.115-0.285-0.177-0.587-0.177-0.906 0-0.679 0.253-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678-0.001 1.276 0.244 1.773 0.751z"/><path id="path2658" opacity="0.41" d="m35.72 32.153c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.62 0.188 1.144 0.546 1.585-0.112-0.292-0.171-0.61-0.171-0.96-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.23 1.798 0.71l3.831 3.834c0.062 0.062 0.11 0.134 0.164 0.2-0.117-0.306-0.295-0.581-0.539-0.825l-3.831-3.834z"/><path id="path258" opacity="0.41" d="m14.075 31.399c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.618 0.192 1.146 0.549 1.588-0.114-0.294-0.174-0.614-0.174-0.963 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.063 0.063 0.111 0.134 0.166 0.202-0.119-0.309-0.299-0.585-0.541-0.827-0.48-0.479-1.081-0.722-1.804-0.717z"/></g></g>
518+</svg>
519
520=== added file 'Notifications/graphics/notification-display-brightness-medium.svg'
521--- Notifications/graphics/notification-display-brightness-medium.svg 1970-01-01 00:00:00 +0000
522+++ Notifications/graphics/notification-display-brightness-medium.svg 2013-04-04 07:15:30 +0000
523@@ -0,0 +1,17 @@
524+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
525+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
526+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 48" xml:space="preserve" height="48px" width="47.998px" version="1.1" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 48" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata263"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs261">
527+ <linearGradient id="linearGradient2649" y2="2.0005" gradientUnits="userSpaceOnUse" x2="23.999" y1="46" x1="23.999"><stop id="stop248" stop-color="#9B9B9B" offset="0"/><stop id="stop250" stop-color="#ECECEC" offset="1"/></linearGradient>
528+ </defs>
529+<g id="Layer_2">
530+ <g id="g238" opacity=".3">
531+ <g id="g240">
532+ <path id="path242" d="m46.643 20.844c-0.885-0.887-1.987-1.355-3.186-1.355h-5.419c-1.066 0-2.059 0.371-2.878 1.069-0.215-0.7-0.495-1.37-0.832-2.006 1.081-0.091 2.045-0.532 2.809-1.292l3.827-3.834c0.84-0.84 1.296-1.936 1.316-3.223-0.01-1.24-0.466-2.344-1.312-3.186-0.849-0.852-1.952-1.308-3.244-1.318-1.242 0.021-2.34 0.472-3.173 1.308l-3.838 3.836c-0.752 0.753-1.189 1.716-1.279 2.816-0.628-0.33-1.288-0.607-1.978-0.821 0.693-0.825 1.057-1.816 1.057-2.883v-5.422c0-1.188-0.454-2.286-1.352-3.21-0.88-0.867-1.979-1.323-3.179-1.323-1.199 0-2.3 0.456-3.223 1.362-0.863 0.896-1.318 1.993-1.318 3.171v5.422c0 1.057 0.363 2.043 1.075 2.891-0.681 0.212-1.335 0.487-1.956 0.817-0.086-1.066-0.528-2.024-1.292-2.79l-3.828-3.828c-0.85-0.852-1.952-1.306-3.221-1.316-1.247 0.011-2.351 0.465-3.191 1.307-0.848 0.844-1.302 1.95-1.312 3.232 0.01 1.238 0.464 2.34 1.314 3.19l3.828 3.828c0.766 0.768 1.727 1.211 2.798 1.293-0.33 0.627-0.604 1.29-0.817 1.977-0.815-0.693-1.808-1.058-2.889-1.058h-5.408c-1.201 0-2.303 0.458-3.207 1.347-0.873 0.884-1.335 1.986-1.335 3.187 0 1.196 0.46 2.299 1.36 3.211 0.881 0.866 1.983 1.322 3.182 1.322h5.408c1.089 0 2.088-0.369 2.905-1.071 0.208 0.669 0.477 1.311 0.798 1.921-1.069 0.089-2.026 0.528-2.786 1.288l-3.821 3.827c-0.848 0.847-1.3 1.95-1.31 3.211 0 1.248 0.454 2.36 1.306 3.211 0.852 0.854 1.96 1.306 3.208 1.306h0.022c1.244-0.015 2.346-0.466 3.19-1.311l3.828-3.829c0.762-0.766 1.199-1.725 1.284-2.773 0.615 0.324 1.263 0.595 1.935 0.807-0.701 0.819-1.068 1.81-1.068 2.894v5.412c0 1.192 0.46 2.294 1.345 3.196 0.881 0.882 1.987 1.346 3.196 1.346 1.203 0 2.305-0.464 3.198-1.357 0.873-0.887 1.333-1.989 1.333-3.186v-5.412c0-1.088-0.371-2.084-1.059-2.883 0.686-0.213 1.344-0.487 1.969-0.817 0.085 1.092 0.524 2.062 1.285 2.818l3.836 3.841c0.853 0.848 1.96 1.295 3.202 1.295h0.035c1.232 0 2.332-0.447 3.182-1.3 0.858-0.858 1.307-1.975 1.296-3.212 0-1.255-0.447-2.367-1.293-3.213l-3.83-3.832c-0.751-0.755-1.711-1.192-2.814-1.281 0.33-0.623 0.606-1.277 0.821-1.962 0.827 0.705 1.819 1.074 2.895 1.074h5.419c1.2 0 2.303-0.464 3.171-1.33 0.897-0.877 1.37-1.987 1.37-3.211 0-1.217-0.473-2.325-1.355-3.188zm-34.92 4.97c-0.498 0.507-1.095 0.752-1.773 0.752h-5.409c-0.679 0-1.267-0.245-1.782-0.752-0.506-0.516-0.76-1.113-0.76-1.783 0-0.679 0.253-1.268 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678 0 1.275 0.245 1.773 0.751 0.516 0.516 0.769 1.104 0.769 1.783-0.001 0.67-0.254 1.268-0.77 1.783zm9.717-21.28c0-0.679 0.262-1.267 0.76-1.783 0.515-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.498 0.516 0.751 1.104 0.751 1.783v5.422c0 0.67-0.253 1.268-0.751 1.774-0.516 0.507-1.104 0.76-1.782 0.76s-1.267-0.253-1.782-0.76c-0.498-0.507-0.76-1.104-0.76-1.774v-5.422zm-9.17 11.337l-3.825-3.827c-0.479-0.48-0.723-1.069-0.729-1.792 0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.48 0.48 0.729 1.075 0.723 1.786 0 0.729-0.236 1.325-0.716 1.805-0.473 0.473-1.075 0.717-1.804 0.717-0.71 0.005-1.305-0.245-1.785-0.725zm3.603 19.836l-3.825 3.827c-0.48 0.48-1.075 0.717-1.797 0.724-0.717 0-1.318-0.243-1.791-0.717-0.48-0.479-0.723-1.082-0.723-1.799 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.473 0.474 0.716 1.075 0.71 1.799 0.005 0.711-0.238 1.312-0.717 1.792zm10.642 7.749c0 0.68-0.253 1.268-0.76 1.784-0.507 0.507-1.104 0.76-1.773 0.76-0.678 0-1.275-0.253-1.782-0.76-0.506-0.517-0.76-1.104-0.76-1.784v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.507 0.498 0.76 1.096 0.76 1.774v5.412zm-2.516-9.77c-5.346 0-9.679-4.337-9.679-9.686s4.333-9.685 9.679-9.685 9.679 4.336 9.679 9.685-4.333 9.686-9.679 9.686zm11.721-1.533l3.831 3.834c0.48 0.48 0.71 1.082 0.71 1.799 0.007 0.723-0.236 1.325-0.71 1.799-0.479 0.479-1.081 0.723-1.804 0.716-0.716 0-1.311-0.236-1.791-0.716l-3.831-3.835c-0.48-0.479-0.717-1.074-0.717-1.792-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.231 1.798 0.71zm-1.783-15.583c-0.724-0.006-1.318-0.244-1.798-0.724s-0.717-1.075-0.723-1.799c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.48 0.48 0.724 1.069 0.729 1.792-0.013 0.717-0.249 1.312-0.729 1.792l-3.831 3.833c-0.474 0.475-1.075 0.718-1.784 0.725zm11.292 9.244c-0.507 0.507-1.095 0.761-1.772 0.761h-5.419c-0.679 0-1.267-0.254-1.773-0.761-0.516-0.506-0.76-1.104-0.76-1.783 0-0.67 0.244-1.268 0.76-1.774 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.516 0.506 0.77 1.104 0.77 1.774 0 0.679-0.254 1.278-0.77 1.783z"/>
533+ </g>
534+ </g>
535+</g>
536+<path id="path2700" fill="url(#linearGradient2649)" d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685s4.333 9.686 9.679 9.686 9.679-4.337 9.679-9.686-4.333-9.685-9.679-9.685z"/>
537+<g id="Layer_3">
538+</g>
539+<path id="path2664" opacity="0.41" fill="#fff" d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685 0 1.918 0.564 3.701 1.526 5.206-0.733-1.364-1.151-2.924-1.151-4.581 0-5.349 4.333-9.685 9.679-9.685 3.428 0 6.433 1.789 8.153 4.479-1.633-3.038-4.839-5.104-8.528-5.104z"/><g id="g2712" opacity=".7"><g id="g2702" fill="url(#linearGradient2649)"><path id="path2698" d="m11.723 25.814c0.516-0.516 0.769-1.113 0.769-1.783 0-0.679-0.253-1.268-0.769-1.783-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.669 0.253 1.267 0.76 1.783 0.516 0.507 1.104 0.752 1.782 0.752h5.41c0.678 0 1.276-0.245 1.773-0.752z"/><path id="path2696" d="m12.27 15.871c0.48 0.48 1.075 0.73 1.785 0.724 0.729 0 1.331-0.244 1.804-0.717 0.48-0.48 0.716-1.076 0.716-1.805 0.006-0.711-0.243-1.306-0.723-1.786l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.006 0.723 0.25 1.312 0.729 1.792l3.826 3.828z"/><path id="path2694" d="m33.937 16.57c0.71-0.006 1.311-0.25 1.784-0.724l3.831-3.833c0.48-0.48 0.717-1.076 0.729-1.792-0.006-0.723-0.249-1.312-0.729-1.792-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.006 0.724 0.243 1.319 0.723 1.799s1.074 0.716 1.798 0.723z"/><path id="path2692" d="m23.982 12.491c0.678 0 1.266-0.253 1.782-0.76 0.498-0.507 0.751-1.104 0.751-1.774v-5.423c0-0.679-0.253-1.267-0.751-1.783-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.67 0.262 1.268 0.76 1.774 0.515 0.507 1.104 0.761 1.782 0.761z"/><path id="path2690" d="m35.72 32.153c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.718 0.236 1.312 0.717 1.792l3.831 3.835c0.48 0.479 1.075 0.716 1.791 0.716 0.723 0.007 1.324-0.236 1.804-0.716 0.474-0.474 0.717-1.076 0.71-1.799 0-0.717-0.229-1.318-0.71-1.799l-3.831-3.834z"/><path id="path2688" d="m45.229 22.258c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.678 0.244 1.277 0.76 1.783 0.507 0.507 1.095 0.761 1.773 0.761h5.419c0.678 0 1.266-0.254 1.772-0.761 0.516-0.506 0.77-1.104 0.77-1.783 0-0.67-0.254-1.268-0.77-1.774z"/><path id="path2686" d="m14.075 31.399c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.717 0.243 1.319 0.723 1.799 0.473 0.474 1.074 0.717 1.791 0.717 0.723-0.007 1.317-0.243 1.797-0.724l3.825-3.827c0.479-0.48 0.723-1.081 0.716-1.792 0.006-0.724-0.237-1.325-0.71-1.799-0.479-0.479-1.08-0.722-1.803-0.717z"/><path id="path252" d="m23.982 35.5c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.68 0.253 1.268 0.76 1.784 0.507 0.507 1.104 0.76 1.782 0.76 0.669 0 1.266-0.253 1.773-0.76 0.507-0.517 0.76-1.104 0.76-1.784v-5.412c0-0.679-0.253-1.276-0.76-1.774-0.507-0.517-1.104-0.77-1.773-0.77z"/></g><g id="g2674" fill="#fff"><path id="path2672" opacity="0.41" d="m21.815 10.581v-5.422c0-0.679 0.262-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.075 0.078 0.135 0.162 0.199 0.244-0.126-0.311-0.314-0.6-0.574-0.869-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.564 0.197 1.074 0.553 1.525-0.115-0.283-0.178-0.583-0.178-0.9z"/><path id="path2670" opacity="0.41" d="m8.091 10.876c0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.068 0.068 0.12 0.143 0.179 0.215-0.121-0.311-0.305-0.592-0.554-0.84l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.005 0.622 0.197 1.139 0.552 1.579-0.112-0.289-0.173-0.605-0.176-0.954z"/><path id="path2668" opacity="0.41" d="m31.791 14.672c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.067 0.067 0.12 0.143 0.178 0.214-0.121-0.311-0.304-0.59-0.553-0.839-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.005 0.625 0.194 1.149 0.552 1.591-0.114-0.292-0.174-0.613-0.177-0.966z"/><path id="path2666" opacity="0.41" d="m45.229 22.258c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.571 0.185 1.081 0.546 1.531-0.111-0.283-0.171-0.585-0.171-0.906 0-0.67 0.244-1.267 0.76-1.773 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.085 0.083 0.151 0.172 0.222 0.26-0.127-0.319-0.322-0.617-0.597-0.886z"/><path id="path2662" opacity="0.41" d="m23.982 35.5c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.573 0.191 1.077 0.551 1.532-0.114-0.284-0.176-0.585-0.176-0.907v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.081 0.079 0.145 0.166 0.212 0.25-0.126-0.317-0.318-0.611-0.587-0.875-0.507-0.517-1.104-0.77-1.773-0.77z"/><path id="path2660" opacity="0.41" d="m12.098 22.874c0.084 0.084 0.15 0.173 0.22 0.261-0.127-0.317-0.322-0.613-0.595-0.886-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.565 0.191 1.075 0.552 1.531-0.115-0.285-0.177-0.587-0.177-0.906 0-0.679 0.253-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678-0.001 1.276 0.244 1.773 0.751z"/><path id="path2658" opacity="0.41" d="m35.72 32.153c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.62 0.188 1.144 0.546 1.585-0.112-0.292-0.171-0.61-0.171-0.96-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.23 1.798 0.71l3.831 3.834c0.062 0.062 0.11 0.134 0.164 0.2-0.117-0.306-0.295-0.581-0.539-0.825l-3.831-3.834z"/><path id="path258" opacity="0.41" d="m14.075 31.399c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.618 0.192 1.146 0.549 1.588-0.114-0.294-0.174-0.614-0.174-0.963 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.063 0.063 0.111 0.134 0.166 0.202-0.119-0.309-0.299-0.585-0.541-0.827-0.48-0.479-1.081-0.722-1.804-0.717z"/></g></g>
540+</svg>
541
542=== added file 'Notifications/graphics/notification-display-brightness-off.svg'
543--- Notifications/graphics/notification-display-brightness-off.svg 1970-01-01 00:00:00 +0000
544+++ Notifications/graphics/notification-display-brightness-off.svg 2013-04-04 07:15:30 +0000
545@@ -0,0 +1,17 @@
546+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
547+<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14576) -->
548+<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 47.998 48" xml:space="preserve" height="48px" width="47.998px" version="1.1" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 47.998 48" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata263"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs261">
549+ <linearGradient id="linearGradient2649" y2="2.0005" gradientUnits="userSpaceOnUse" x2="23.999" y1="46" x1="23.999"><stop id="stop248" stop-color="#9B9B9B" offset="0"/><stop id="stop250" stop-color="#ECECEC" offset="1"/></linearGradient>
550+ </defs>
551+<g id="Layer_2">
552+ <g id="g238" opacity=".3">
553+ <g id="g240">
554+ <path id="path242" d="m46.643 20.844c-0.885-0.887-1.987-1.355-3.186-1.355h-5.419c-1.066 0-2.059 0.371-2.878 1.069-0.215-0.7-0.495-1.37-0.832-2.006 1.081-0.091 2.045-0.532 2.809-1.292l3.827-3.834c0.84-0.84 1.296-1.936 1.316-3.223-0.01-1.24-0.466-2.344-1.312-3.186-0.849-0.852-1.952-1.308-3.244-1.318-1.242 0.021-2.34 0.472-3.173 1.308l-3.838 3.836c-0.752 0.753-1.189 1.716-1.279 2.816-0.628-0.33-1.288-0.607-1.978-0.821 0.693-0.825 1.057-1.816 1.057-2.883v-5.422c0-1.188-0.454-2.286-1.352-3.21-0.88-0.867-1.979-1.323-3.179-1.323-1.199 0-2.3 0.456-3.223 1.362-0.863 0.896-1.318 1.993-1.318 3.171v5.422c0 1.057 0.363 2.043 1.075 2.891-0.681 0.212-1.335 0.487-1.956 0.817-0.086-1.066-0.528-2.024-1.292-2.79l-3.828-3.828c-0.85-0.852-1.952-1.306-3.221-1.316-1.247 0.011-2.351 0.465-3.191 1.307-0.848 0.844-1.302 1.95-1.312 3.232 0.01 1.238 0.464 2.34 1.314 3.19l3.828 3.828c0.766 0.768 1.727 1.211 2.798 1.293-0.33 0.627-0.604 1.29-0.817 1.977-0.815-0.693-1.808-1.058-2.889-1.058h-5.408c-1.201 0-2.303 0.458-3.207 1.347-0.873 0.884-1.335 1.986-1.335 3.187 0 1.196 0.46 2.299 1.36 3.211 0.881 0.866 1.983 1.322 3.182 1.322h5.408c1.089 0 2.088-0.369 2.905-1.071 0.208 0.669 0.477 1.311 0.798 1.921-1.069 0.089-2.026 0.528-2.786 1.288l-3.821 3.827c-0.848 0.847-1.3 1.95-1.31 3.211 0 1.248 0.454 2.36 1.306 3.211 0.852 0.854 1.96 1.306 3.208 1.306h0.022c1.244-0.015 2.346-0.466 3.19-1.311l3.828-3.829c0.762-0.766 1.199-1.725 1.284-2.773 0.615 0.324 1.263 0.595 1.935 0.807-0.701 0.819-1.068 1.81-1.068 2.894v5.412c0 1.192 0.46 2.294 1.345 3.196 0.881 0.882 1.987 1.346 3.196 1.346 1.203 0 2.305-0.464 3.198-1.357 0.873-0.887 1.333-1.989 1.333-3.186v-5.412c0-1.088-0.371-2.084-1.059-2.883 0.686-0.213 1.344-0.487 1.969-0.817 0.085 1.092 0.524 2.062 1.285 2.818l3.836 3.841c0.853 0.848 1.96 1.295 3.202 1.295h0.035c1.232 0 2.332-0.447 3.182-1.3 0.858-0.858 1.307-1.975 1.296-3.212 0-1.255-0.447-2.367-1.293-3.213l-3.83-3.832c-0.751-0.755-1.711-1.192-2.814-1.281 0.33-0.623 0.606-1.277 0.821-1.962 0.827 0.705 1.819 1.074 2.895 1.074h5.419c1.2 0 2.303-0.464 3.171-1.33 0.897-0.877 1.37-1.987 1.37-3.211 0-1.217-0.473-2.325-1.355-3.188zm-34.92 4.97c-0.498 0.507-1.095 0.752-1.773 0.752h-5.409c-0.679 0-1.267-0.245-1.782-0.752-0.506-0.516-0.76-1.113-0.76-1.783 0-0.679 0.253-1.268 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678 0 1.275 0.245 1.773 0.751 0.516 0.516 0.769 1.104 0.769 1.783-0.001 0.67-0.254 1.268-0.77 1.783zm9.717-21.28c0-0.679 0.262-1.267 0.76-1.783 0.515-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.498 0.516 0.751 1.104 0.751 1.783v5.422c0 0.67-0.253 1.268-0.751 1.774-0.516 0.507-1.104 0.76-1.782 0.76s-1.267-0.253-1.782-0.76c-0.498-0.507-0.76-1.104-0.76-1.774v-5.422zm-9.17 11.337l-3.825-3.827c-0.479-0.48-0.723-1.069-0.729-1.792 0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.48 0.48 0.729 1.075 0.723 1.786 0 0.729-0.236 1.325-0.716 1.805-0.473 0.473-1.075 0.717-1.804 0.717-0.71 0.005-1.305-0.245-1.785-0.725zm3.603 19.836l-3.825 3.827c-0.48 0.48-1.075 0.717-1.797 0.724-0.717 0-1.318-0.243-1.791-0.717-0.48-0.479-0.723-1.082-0.723-1.799 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.473 0.474 0.716 1.075 0.71 1.799 0.005 0.711-0.238 1.312-0.717 1.792zm10.642 7.749c0 0.68-0.253 1.268-0.76 1.784-0.507 0.507-1.104 0.76-1.773 0.76-0.678 0-1.275-0.253-1.782-0.76-0.506-0.517-0.76-1.104-0.76-1.784v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.507 0.498 0.76 1.096 0.76 1.774v5.412zm-2.516-9.77c-5.346 0-9.679-4.337-9.679-9.686s4.333-9.685 9.679-9.685 9.679 4.336 9.679 9.685-4.333 9.686-9.679 9.686zm11.721-1.533l3.831 3.834c0.48 0.48 0.71 1.082 0.71 1.799 0.007 0.723-0.236 1.325-0.71 1.799-0.479 0.479-1.081 0.723-1.804 0.716-0.716 0-1.311-0.236-1.791-0.716l-3.831-3.835c-0.48-0.479-0.717-1.074-0.717-1.792-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.231 1.798 0.71zm-1.783-15.583c-0.724-0.006-1.318-0.244-1.798-0.724s-0.717-1.075-0.723-1.799c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.48 0.48 0.724 1.069 0.729 1.792-0.013 0.717-0.249 1.312-0.729 1.792l-3.831 3.833c-0.474 0.475-1.075 0.718-1.784 0.725zm11.292 9.244c-0.507 0.507-1.095 0.761-1.772 0.761h-5.419c-0.679 0-1.267-0.254-1.773-0.761-0.516-0.506-0.76-1.104-0.76-1.783 0-0.67 0.244-1.268 0.76-1.774 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.516 0.506 0.77 1.104 0.77 1.774 0 0.679-0.254 1.278-0.77 1.783z"/>
555+ </g>
556+ </g>
557+</g>
558+<path id="path2700" fill="url(#linearGradient2649)" d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685s4.333 9.686 9.679 9.686 9.679-4.337 9.679-9.686-4.333-9.685-9.679-9.685z"/>
559+<g id="Layer_3">
560+</g>
561+<path id="path2664" opacity="0.41" fill="#fff" d="m23.999 14.315c-5.346 0-9.679 4.336-9.679 9.685 0 1.918 0.564 3.701 1.526 5.206-0.733-1.364-1.151-2.924-1.151-4.581 0-5.349 4.333-9.685 9.679-9.685 3.428 0 6.433 1.789 8.153 4.479-1.633-3.038-4.839-5.104-8.528-5.104z"/><g id="g2712" opacity=".3"><g id="g2702" fill="url(#linearGradient2649)"><path id="path2698" d="m11.723 25.814c0.516-0.516 0.769-1.113 0.769-1.783 0-0.679-0.253-1.268-0.769-1.783-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.669 0.253 1.267 0.76 1.783 0.516 0.507 1.104 0.752 1.782 0.752h5.41c0.678 0 1.276-0.245 1.773-0.752z"/><path id="path2696" d="m12.27 15.871c0.48 0.48 1.075 0.73 1.785 0.724 0.729 0 1.331-0.244 1.804-0.717 0.48-0.48 0.716-1.076 0.716-1.805 0.006-0.711-0.243-1.306-0.723-1.786l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.006 0.723 0.25 1.312 0.729 1.792l3.826 3.828z"/><path id="path2694" d="m33.937 16.57c0.71-0.006 1.311-0.25 1.784-0.724l3.831-3.833c0.48-0.48 0.717-1.076 0.729-1.792-0.006-0.723-0.249-1.312-0.729-1.792-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.006 0.724 0.243 1.319 0.723 1.799s1.074 0.716 1.798 0.723z"/><path id="path2692" d="m23.982 12.491c0.678 0 1.266-0.253 1.782-0.76 0.498-0.507 0.751-1.104 0.751-1.774v-5.423c0-0.679-0.253-1.267-0.751-1.783-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.67 0.262 1.268 0.76 1.774 0.515 0.507 1.104 0.761 1.782 0.761z"/><path id="path2690" d="m35.72 32.153c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.718 0.236 1.312 0.717 1.792l3.831 3.835c0.48 0.479 1.075 0.716 1.791 0.716 0.723 0.007 1.324-0.236 1.804-0.716 0.474-0.474 0.717-1.076 0.71-1.799 0-0.717-0.229-1.318-0.71-1.799l-3.831-3.834z"/><path id="path2688" d="m45.229 22.258c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.678 0.244 1.277 0.76 1.783 0.507 0.507 1.095 0.761 1.773 0.761h5.419c0.678 0 1.266-0.254 1.772-0.761 0.516-0.506 0.77-1.104 0.77-1.783 0-0.67-0.254-1.268-0.77-1.774z"/><path id="path2686" d="m14.075 31.399c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.717 0.243 1.319 0.723 1.799 0.473 0.474 1.074 0.717 1.791 0.717 0.723-0.007 1.317-0.243 1.797-0.724l3.825-3.827c0.479-0.48 0.723-1.081 0.716-1.792 0.006-0.724-0.237-1.325-0.71-1.799-0.479-0.479-1.08-0.722-1.803-0.717z"/><path id="path252" d="m23.982 35.5c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.68 0.253 1.268 0.76 1.784 0.507 0.507 1.104 0.76 1.782 0.76 0.669 0 1.266-0.253 1.773-0.76 0.507-0.517 0.76-1.104 0.76-1.784v-5.412c0-0.679-0.253-1.276-0.76-1.774-0.507-0.517-1.104-0.77-1.773-0.77z"/></g><g id="g2674" fill="#fff"><path id="path2672" opacity="0.41" d="m21.815 10.581v-5.422c0-0.679 0.262-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751s1.266 0.244 1.782 0.751c0.075 0.078 0.135 0.162 0.199 0.244-0.126-0.311-0.314-0.6-0.574-0.869-0.516-0.507-1.104-0.751-1.782-0.751s-1.267 0.244-1.782 0.751c-0.498 0.516-0.76 1.104-0.76 1.783v5.422c0 0.564 0.197 1.074 0.553 1.525-0.115-0.283-0.178-0.583-0.178-0.9z"/><path id="path2670" opacity="0.41" d="m8.091 10.876c0.006-0.723 0.25-1.325 0.723-1.798 0.48-0.48 1.075-0.717 1.797-0.724 0.723 0.007 1.312 0.25 1.791 0.73l3.825 3.828c0.068 0.068 0.12 0.143 0.179 0.215-0.121-0.311-0.305-0.592-0.554-0.84l-3.825-3.828c-0.479-0.48-1.068-0.723-1.791-0.73-0.723 0.006-1.318 0.244-1.798 0.724-0.473 0.474-0.716 1.075-0.723 1.798 0.005 0.622 0.197 1.139 0.552 1.579-0.112-0.289-0.173-0.605-0.176-0.954z"/><path id="path2668" opacity="0.41" d="m31.791 14.672c0.006-0.71 0.243-1.318 0.716-1.792l3.832-3.834c0.479-0.479 1.081-0.71 1.797-0.723 0.724 0.006 1.312 0.25 1.791 0.73 0.067 0.067 0.12 0.143 0.178 0.214-0.121-0.311-0.304-0.59-0.553-0.839-0.479-0.48-1.067-0.724-1.791-0.73-0.716 0.013-1.317 0.244-1.797 0.723l-3.832 3.834c-0.473 0.474-0.71 1.082-0.716 1.792 0.005 0.625 0.194 1.149 0.552 1.591-0.114-0.292-0.174-0.613-0.177-0.966z"/><path id="path2666" opacity="0.41" d="m45.229 22.258c-0.507-0.507-1.095-0.77-1.772-0.77h-5.419c-0.679 0-1.267 0.262-1.773 0.77-0.516 0.506-0.76 1.104-0.76 1.774 0 0.571 0.185 1.081 0.546 1.531-0.111-0.283-0.171-0.585-0.171-0.906 0-0.67 0.244-1.267 0.76-1.773 0.507-0.507 1.095-0.77 1.773-0.77h5.419c0.678 0 1.266 0.262 1.772 0.77 0.085 0.083 0.151 0.172 0.222 0.26-0.127-0.319-0.322-0.617-0.597-0.886z"/><path id="path2662" opacity="0.41" d="m23.982 35.5c-0.678 0-1.275 0.253-1.782 0.77-0.506 0.498-0.76 1.096-0.76 1.774v5.412c0 0.573 0.191 1.077 0.551 1.532-0.114-0.284-0.176-0.585-0.176-0.907v-5.412c0-0.679 0.253-1.276 0.76-1.774 0.507-0.517 1.104-0.77 1.782-0.77 0.669 0 1.266 0.253 1.773 0.77 0.081 0.079 0.145 0.166 0.212 0.25-0.126-0.317-0.318-0.611-0.587-0.875-0.507-0.517-1.104-0.77-1.773-0.77z"/><path id="path2660" opacity="0.41" d="m12.098 22.874c0.084 0.084 0.15 0.173 0.22 0.261-0.127-0.317-0.322-0.613-0.595-0.886-0.498-0.507-1.095-0.751-1.773-0.751h-5.41c-0.679 0-1.267 0.245-1.782 0.751-0.506 0.516-0.76 1.104-0.76 1.783 0 0.565 0.191 1.075 0.552 1.531-0.115-0.285-0.177-0.587-0.177-0.906 0-0.679 0.253-1.267 0.76-1.783 0.516-0.507 1.104-0.751 1.782-0.751h5.41c0.678-0.001 1.276 0.244 1.773 0.751z"/><path id="path2658" opacity="0.41" d="m35.72 32.153c-0.479-0.479-1.081-0.71-1.798-0.71-0.723-0.006-1.317 0.243-1.791 0.717-0.479 0.479-0.729 1.075-0.723 1.798 0 0.62 0.188 1.144 0.546 1.585-0.112-0.292-0.171-0.61-0.171-0.96-0.006-0.723 0.243-1.318 0.723-1.798 0.474-0.474 1.068-0.723 1.791-0.717 0.717 0 1.318 0.23 1.798 0.71l3.831 3.834c0.062 0.062 0.11 0.134 0.164 0.2-0.117-0.306-0.295-0.581-0.539-0.825l-3.831-3.834z"/><path id="path258" opacity="0.41" d="m14.075 31.399c-0.71-0.006-1.311 0.237-1.791 0.717l-3.825 3.828c-0.48 0.479-0.717 1.074-0.723 1.798 0 0.618 0.192 1.146 0.549 1.588-0.114-0.294-0.174-0.614-0.174-0.963 0.006-0.724 0.243-1.318 0.723-1.798l3.825-3.828c0.48-0.479 1.081-0.723 1.791-0.717 0.723-0.006 1.324 0.237 1.804 0.717 0.063 0.063 0.111 0.134 0.166 0.202-0.119-0.309-0.299-0.585-0.541-0.827-0.48-0.479-1.081-0.722-1.804-0.717z"/></g></g>
562+</svg>
563
564=== added file 'Notifications/graphics/tile.png'
565Binary files Notifications/graphics/tile.png 1970-01-01 00:00:00 +0000 and Notifications/graphics/tile.png 2013-04-04 07:15:30 +0000 differ
566=== added file 'Notifications/graphics/value-bar-off.png'
567Binary files Notifications/graphics/value-bar-off.png 1970-01-01 00:00:00 +0000 and Notifications/graphics/value-bar-off.png 2013-04-04 07:15:30 +0000 differ
568=== added file 'Notifications/graphics/value-bar-on.png'
569Binary files Notifications/graphics/value-bar-on.png 1970-01-01 00:00:00 +0000 and Notifications/graphics/value-bar-on.png 2013-04-04 07:15:30 +0000 differ
570=== modified file 'tests/qmluitests/tst_NotificationRenderer.qml'
571--- tests/qmluitests/tst_NotificationRenderer.qml 2013-04-04 07:15:29 +0000
572+++ tests/qmluitests/tst_NotificationRenderer.qml 2013-04-04 07:15:30 +0000
573@@ -17,12 +17,19 @@
574 import QtQuick 2.0
575 import QtTest 1.0
576 import "../../Notifications"
577-
578-Rectangle {
579- id: rootRect
580- width: units.gu (40)
581- height: units.gu (71)
582- color: "white"
583+import Ubuntu.Components 0.1
584+
585+Item {
586+ width: units.gu(40)
587+ height: units.gu(71)
588+
589+ Image {
590+ id: checkerBoard
591+
592+ anchors.fill: parent
593+ source: "../../Notifications/graphics/tile.png"
594+ fillMode: Image.Tile
595+ }
596
597 Notifications {
598 id: notifications
599@@ -30,14 +37,13 @@
600 anchors.fill: parent
601 }
602
603- TestCase {
604- id: root
605+ UnityTestCase {
606 name: "NotificationRendererTest"
607 when: windowShown
608
609 function test_displayNotification_data() {
610 return [
611- {
612+ /*{
613 tag: "Snap Decision with secondary icon",
614 type: "Notifications.Type.SnapDecision",
615 summary: "Tom Ato",
616@@ -64,15 +70,122 @@
617 body: "I did not expect it to be that late.",
618 icon: "graphics/avatar3.jpg",
619 secondaryIcon: "graphics/facebook.png"
620- }
621+ },
622+ {
623+ tag: "Interactive notification",
624+ type: "Notifications.Type.Interactive",
625+ summary: "Interactive notification",
626+ body: "Click me to trigger the attached single action",
627+ icon: "graphics/avatar1.jpg",
628+ actions: [{ action_id: "some_action_id", action_label: "Dummy label"}]
629+ },
630+ {
631+ tag: "Second interactive notification",
632+ type: "Notifications.Type.Interactive",
633+ summary: "Another interactive notification",
634+ body: "To trigger the attached single action click anywhere on the notification.",
635+ icon: "graphics/avatar2.jpg",
636+ secondaryIcon: "graphics/facebook.png",
637+ actions: [{ action_id: "another_action_id", action_label: "Dummy label"}]
638+ },*/
639+ {
640+ tag: "Confirmation notification - Volume off",
641+ type: "Notifications.Type.Confirmation",
642+ icon: "graphics/notification-audio-volume-off.svg",
643+ value: 0
644+ },
645+ {
646+ tag: "Confirmation notification - Volume low",
647+ type: "Notifications.Type.Confirmation",
648+ icon: "graphics/notification-audio-volume-low.svg",
649+ value: 25
650+ },
651+ {
652+ tag: "Confirmation notification - Volume medium",
653+ type: "Notifications.Type.Confirmation",
654+ icon: "graphics/notification-audio-volume-medium.svg",
655+ value: 50
656+ },
657+ {
658+ tag: "Confirmation notification - Volume high",
659+ type: "Notifications.Type.Confirmation",
660+ icon: "graphics/notification-audio-volume-high.svg",
661+ value: 75
662+ },
663+ {
664+ tag: "Confirmation notification - Brightness off",
665+ type: "Notifications.Type.Confirmation",
666+ icon: "graphics/notification-display-brightness-off.svg",
667+ value: 0
668+ },
669+ {
670+ tag: "Confirmation notification - Brightness low",
671+ type: "Notifications.Type.Confirmation",
672+ icon: "graphics/notification-display-brightness-low.svg",
673+ value: 25
674+ },
675+ {
676+ tag: "Confirmation notification - Brightness medium",
677+ type: "Notifications.Type.Confirmation",
678+ icon: "graphics/notification-display-brightness-medium.svg",
679+ value: 50
680+ },
681+ {
682+ tag: "Confirmation notification - Brightness high",
683+ type: "Notifications.Type.Confirmation",
684+ icon: "graphics/notification-display-brightness-high.svg",
685+ value: 75
686+ },
687+ {
688+ tag: "Confirmation notification - Brightness full",
689+ type: "Notifications.Type.Confirmation",
690+ icon: "graphics/notification-display-brightness-full.svg",
691+ value: 100
692+ },
693+ {
694+ tag: "Confirmation notification - icon-only eject",
695+ type: "Notifications.Type.Confirmation",
696+ icon: "graphics/notification-device-eject.svg",
697+ value: -2
698+ },
699+ {
700+ tag: "Confirmation notification - icon-only next",
701+ type: "Notifications.Type.Confirmation",
702+ icon: "graphics/notification-audio-next.svg",
703+ value: -2
704+ },
705+ {
706+ tag: "Confirmation notification - icon-only previous",
707+ type: "Notifications.Type.Confirmation",
708+ icon: "graphics/notification-audio-previous.svg",
709+ value: -2
710+ }/*,
711+ {
712+ tag: "Confirmation notification - Volume bottom throbbing",
713+ type: "Notifications.Type.Confirmation",
714+ icon: "graphics/notification-audio-volume-off.svg",
715+ value: -1
716+ },
717+ {
718+ tag: "Confirmation notification - Brightness top throbbing",
719+ type: "Notifications.Type.Confirmation",
720+ icon: "graphics/notification-display-brightness-full.svg",
721+ value: 101
722+ },
723+ {
724+ tag: "Confirmation notification - icon-only",
725+ type: "Notifications.Type.Confirmation",
726+ icon: "graphics/notification-device-eject.svg",
727+ value: -2
728+ }*/
729 ]
730 }
731
732 function test_displayNotification(data) {
733 notifications.displayNotification(data)
734-
735- // wait for a second so one can actually see something
736- wait(1000)
737+ wait(2000)
738+ notifications.clearNotification()
739+ wait(350)
740 }
741 }
742 }

Subscribers

People subscribed via source and target branches