Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2012
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. === modified file 'debian/changelog'
  2. --- debian/changelog 2012-03-30 12:26:38 +0000
  3. +++ debian/changelog 2012-04-02 23:53:23 +0000
  4. @@ -1,5 +1,6 @@
  5. compiz (1:0.9.7.4-0ubuntu1) UNRELEASED; urgency=low
  6.  
  7. + [ Didier Roche ]
  8. * New upstream release
  9. - compiz crashed with SIGSEGV in CompositeScreen::compositingActive()
  10. - Window management - Closing one window sends others to the
  11. @@ -39,7 +40,12 @@
  12. - debian/patches/fix_953089_2.patch
  13. - debian/patches/fix_960831.patch
  14.  
  15. - -- Didier Roche <didrocks@ubuntu.com> Fri, 30 Mar 2012 13:23:23 +0200
  16. + [ Matthias Niess ]
  17. + * debian/patches/fix-screenshots.patch:
  18. + - workaround, remove blue tint from screenshots made with compiz
  19. + screenshot plugin (LP: #771875)
  20. +
  21. + -- Matthias Niess <mniess@gmail.com> Tue, 03 Apr 2012 01:26:10 +0200
  22.  
  23. compiz (1:0.9.7.2-0ubuntu4) precise; urgency=low
  24.  
  25.  
  26. === added file 'debian/patches/fix-screenshots.patch'
  27. --- debian/patches/fix-screenshots.patch 1970-01-01 00:00:00 +0000
  28. +++ debian/patches/fix-screenshots.patch 2012-04-02 23:53:23 +0000
  29. @@ -0,0 +1,17 @@
  30. +## Description: add some description
  31. +## Origin/Author: add some origin or author
  32. +## Bug: bug URL
  33. +=== modified file 'plugins/screenshot/src/screenshot.cpp'
  34. +--- plugins/screenshot/src/screenshot.cpp 2012-02-13 15:28:06 +0000
  35. ++++ plugins/screenshot/src/screenshot.cpp 2012-04-02 23:06:36 +0000
  36. +@@ -277,7 +277,8 @@
  37. + glDisableClientState (GL_TEXTURE_COORD_ARRAY);
  38. + glEnable (GL_BLEND);
  39. + glColor4us (0x2fff, 0x2fff, 0x4fff, 0x4fff);
  40. +- glRecti (x1, y2, x2, y1);
  41. ++ # workaround remove blue overlay
  42. ++ # glRecti (x1, y2, x2, y1);
  43. + glColor4us (0x2fff, 0x2fff, 0x4fff, 0x9fff);
  44. + glBegin (GL_LINE_LOOP);
  45. + glVertex2i (x1, y1);
  46. +
  47.  
  48. === modified file 'debian/patches/series'
  49. --- debian/patches/series 2012-03-30 11:45:48 +0000
  50. +++ debian/patches/series 2012-04-02 23:53:23 +0000
  51. @@ -1,3 +1,4 @@
  52. ubuntu-config.patch
  53. ccp_plugin.patch
  54. workaround_broken_drivers.patch
  55. +fix-screenshots.patch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement