Advertisement
darkxst

g-s 3.6.3.1

Feb 20th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 4.45 KB | None | 0 0
  1. --- gnome-shell-3.6.3/debian/changelog  2013-02-20 11:15:36.000000000 +1100
  2. +++ gnome-shell-3.6.3.1/debian/changelog    2013-02-21 12:01:39.000000000 +1100
  3. @@ -1,3 +1,11 @@
  4. +gnome-shell (3.6.3.1-0ubuntu1) raring; urgency=low
  5. +
  6. +  * New upstream release (LP: #1128804)
  7. +  * debian/patches:
  8. +    - git_messagetray_fix_expansion.patch, Drop applied upstream
  9. +
  10. + -- Tim Lunn <tim@feathertop.org>  Thu, 21 Feb 2013 11:55:19 +1100
  11. +
  12.  gnome-shell (3.6.3-0ubuntu1) raring; urgency=low
  13.  
  14.    * New upstream release. (LP: #1128804)
  15. --- gnome-shell-3.6.3/debian/patches/git_messagetray_fix_expansion.patch    2013-02-20 11:15:36.000000000 +1100
  16. +++ gnome-shell-3.6.3.1/debian/patches/git_messagetray_fix_expansion.patch  1970-01-01 10:00:00.000000000 +1000
  17. @@ -1,61 +0,0 @@
  18. -From 41f933b89e275d06936bba2df8796a16e02baf41 Mon Sep 17 00:00:00 2001
  19. -From: Giovanni Campagna <gcampagna@src.gnome.org>
  20. -Date: Fri, 30 Nov 2012 15:05:38 +0000
  21. -Subject: MessageTray: fix notification height expansion
  22. -
  23. -MessageTray._tween removes all tweens now, so it removes also
  24. -those setting the height to expanded for critical notifications.
  25. -
  26. -This is a regression from 1a27d7dfc02c06bd0ccf4258a9108207b8832ce4
  27. -
  28. -https://bugzilla.gnome.org/show_bug.cgi?id=689295
  29. ----
  30. ---- a/js/ui/messageTray.js
  31. -+++ b/js/ui/messageTray.js
  32. -@@ -2200,40 +2200,28 @@
  33. -     _updateShowingNotification: function() {
  34. -         this._notification.acknowledged = true;
  35. -
  36. --        Tweener.removeTweens(this._notificationWidget);
  37. --
  38. -         // We auto-expand notifications with CRITICAL urgency.
  39. --        // We use Tweener.removeTweens() to remove a tween that was hiding the notification we are
  40. --        // updating, in case that notification was in the process of being hidden. However,
  41. --        // Tweener.removeTweens() would also remove a tween that was updating the position of the
  42. --        // notification we are updating, in case that notification was already expanded and its height
  43. --        // changed. Therefore we need to call this._expandNotification() for expanded notifications
  44. --        // to make sure their position is updated.
  45. --        if (this._notification.urgency == Urgency.CRITICAL || this._notification.expanded)
  46. -+        if (this._notification.urgency == Urgency.CRITICAL)
  47. -             this._expandNotification(true);
  48. -
  49. -         // We tween all notifications to full opacity. This ensures that both new notifications and
  50. -         // notifications that might have been in the process of hiding get full opacity.
  51. -         //
  52. --        // We tween any notification showing in the banner mode to banner height
  53. --        // (this._notificationWidget.y = -this._notificationWidget.height).
  54. -+        // We tween any notification showing in the banner mode to the appropriate height
  55. -+        // (which is banner height or expanded height, depending on the notification state)
  56. -         // This ensures that both new notifications and notifications in the banner mode that might
  57. --        // have been in the process of hiding are shown with the banner height.
  58. -+        // have been in the process of hiding are shown with the correct height.
  59. -         //
  60. -         // We use this._showNotificationCompleted() onComplete callback to extend the time the updated
  61. -         // notification is being shown.
  62. --        //
  63. --        // We don't set the y parameter for the tween for expanded notifications because
  64. --        // this._expandNotification() will result in getting this._notificationWidget.y set to the appropriate
  65. --        // fully expanded value.
  66. -+
  67. -         let tweenParams = { opacity: 255,
  68. -+                            y: -this._notificationWidget.height,
  69. -                             time: ANIMATION_TIME,
  70. -                             transition: 'easeOutQuad',
  71. -                             onComplete: this._showNotificationCompleted,
  72. -                             onCompleteScope: this
  73. -                           };
  74. --        if (!this._notification.expanded)
  75. --            tweenParams.y = -this._notificationWidget.height;
  76. -
  77. -         this._tween(this._notificationWidget, '_notificationState', State.SHOWN, tweenParams);
  78. -    },
  79. --- gnome-shell-3.6.3/debian/patches/series 2013-02-20 11:15:36.000000000 +1100
  80. +++ gnome-shell-3.6.3.1/debian/patches/series   2013-02-21 11:56:06.000000000 +1100
  81. @@ -6,5 +6,4 @@
  82.  ubuntu-lightdm-user-switching.patch
  83.  ubuntu_lock_on_suspend.patch
  84.  git-set-ally-wm-theme.patch
  85. -git_messagetray_fix_expansion.patch
  86.  calendar-remove-strict-check.patch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement