summaryrefslogtreecommitdiffstats
path: root/packages
Commit message (Collapse)AuthorAgeFilesLines
* am a4738bdb: am 7c95ae91: am 67fc6b0b: Merge "Fix issue where keyguard ↵Jim Miller2013-10-161-9/+5
|\ | | | | | | | | | | | | reports a valid token but doesn\'t draw" into klp-dev * commit 'a4738bdbd2d310842bc55aecfcd5105ade83e146': Fix issue where keyguard reports a valid token but doesn't draw
| * am 7c95ae91: am 67fc6b0b: Merge "Fix issue where keyguard reports a valid ↵Jim Miller2013-10-161-9/+5
| |\ | | | | | | | | | | | | | | | | | | token but doesn\'t draw" into klp-dev * commit '7c95ae91b69a1aaae8e0ec41d0e76c66ee52f31a': Fix issue where keyguard reports a valid token but doesn't draw
| | * am 67fc6b0b: Merge "Fix issue where keyguard reports a valid token but ↵Jim Miller2013-10-161-9/+5
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | doesn\'t draw" into klp-dev * commit '67fc6b0b4708161bc8e716f7effc47e7c15d1ca6': Fix issue where keyguard reports a valid token but doesn't draw
| | | * Merge "Fix issue where keyguard reports a valid token but doesn't draw" into ↵Jim Miller2013-10-161-9/+5
| | | |\ | | | | | | | | | | | | | | | klp-dev
| | | | * Fix issue where keyguard reports a valid token but doesn't drawJim Miller2013-10-151-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes an issue where keyguard isn't showing but tells PhoneWindowManager to wait anyway. The fix is to send a null token when keyguard isn't showing. Fixes bug 11216030 Change-Id: I4985fe50c63819415d9d5a1de0b741c8aa6391d8
* | | | | am 5e3ab35c: am f3cad918: am db148b65: Merge "Fix memory leak and slowness ↵Jim Miller2013-10-151-0/+1
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | in keyguard" into klp-dev * commit '5e3ab35c0aaadcec496d18d1a66e79c35a7f8ffd': Fix memory leak and slowness in keyguard
| * | | | am f3cad918: am db148b65: Merge "Fix memory leak and slowness in keyguard" ↵Jim Miller2013-10-151-0/+1
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | into klp-dev * commit 'f3cad9184f6ef56be403369d87fd0fa1cbd9de86': Fix memory leak and slowness in keyguard
| | * | | am db148b65: Merge "Fix memory leak and slowness in keyguard" into klp-devJim Miller2013-10-151-0/+1
| | |\ \ \ | | | |/ / | | | | | | | | | | | | | | | * commit 'db148b655633ed554fed70347fb227bf2f23f7de': Fix memory leak and slowness in keyguard
| | | * | Merge "Fix memory leak and slowness in keyguard" into klp-devJim Miller2013-10-161-0/+1
| | | |\ \
| | | | * | Fix memory leak and slowness in keyguardJim Miller2013-10-151-0/+1
| | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes an issue where the mUpdateSeekBars runnable was being repeatedly posted to the handler while keeping a reference to the transport control (and hence keyguard). Even after the view was detached from keyguard it would continue to post events that would ultimately keep the instance of keyguard from being GC'd and cause keyguard to slow down. Fixes 11169793 Change-Id: If2bb238adf6d78101589926b60a61d9f187c6d1c
* | | | | am 1af10256: am cb13a546: am 49b6d38f: Merge "Fix dodgy states of keyguard ↵Adam Powell2013-10-152-9/+17
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | transport controls" into klp-dev * commit '1af10256cd07c2c096e22038379210866dff82a2': Fix dodgy states of keyguard transport controls
| * | | | am cb13a546: am 49b6d38f: Merge "Fix dodgy states of keyguard transport ↵Adam Powell2013-10-152-9/+17
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | controls" into klp-dev * commit 'cb13a5460495d7b05e1667397166330bb3ac412a': Fix dodgy states of keyguard transport controls
| | * | | am 49b6d38f: Merge "Fix dodgy states of keyguard transport controls" into ↵Adam Powell2013-10-152-9/+17
| | |\ \ \ | | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | klp-dev * commit '49b6d38fe7308d4641046af4a2d062cdc6033c30': Fix dodgy states of keyguard transport controls
| | | * | Merge "Fix dodgy states of keyguard transport controls" into klp-devAdam Powell2013-10-162-9/+17
| | | |\ \
| | | | * | Fix dodgy states of keyguard transport controlsAdam Powell2013-10-152-9/+17
| | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a layout has already been requested when we want to show the correct widget pane, post the event for later and immediately return. This works because PagedView has some interesting ideas about maintaining a consistent state. It will attempt to recalculate the current page position during measurement, but thanks to a reliance on this measurement to establish scrolling boundaries that scrollTo uses for clamping plus other code that depends on the idea that it can add a new widget pane view and immediately scroll to it, this attempt to scroll fails if the target page was added and measurement is not yet complete. This patch ensures we don't hit these edge cases in a few known ways. While this ends things in the correct state, it predictably has a few visual artifacts. Situations where things would completely fail before, positioning pages incorrectly or fading out wrong pages now will briefly flash and fade the widget frames or in some cases will visibly animate from the starting page to the correct one. We should address these issues in a future release. Bug 11217368 Bug 9760604 Change-Id: I989d03b5bfdd5b6403a6b67a8aae7585ca0c8ae0
* | | | | am ee3674a0: am 19fa2122: am 6bd7603a: Merge "Force the wallpaper to reload ↵Michael Wright2013-10-151-0/+1
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | when dimensions change" into klp-dev * commit 'ee3674a01bc827057618d86f2dc921485b9a1393': Force the wallpaper to reload when dimensions change
| * | | | am 19fa2122: am 6bd7603a: Merge "Force the wallpaper to reload when ↵Michael Wright2013-10-151-0/+1
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | dimensions change" into klp-dev * commit '19fa212251542ac8f24ec0b24316bb08417cb44e': Force the wallpaper to reload when dimensions change
| | * | | am 6bd7603a: Merge "Force the wallpaper to reload when dimensions change" ↵Michael Wright2013-10-151-0/+1
| | |\ \ \ | | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | into klp-dev * commit '6bd7603a56cd671c4523d66c1e7378c27a6ac33c': Force the wallpaper to reload when dimensions change
| | | * | Merge "Force the wallpaper to reload when dimensions change" into klp-devMichael Wright2013-10-151-0/+1
| | | |\ \
| | | | * | Force the wallpaper to reload when dimensions changeMichael Wright2013-10-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently it's possible for the home application to suggest new wallpaper dimensions and the WallpaperService to request the bitmap between when the new dimensions have been propagated and the old bitmap has been forgotten. This leads to the WallpaperService drawing a Bitmap with the old dimensions into a Surface with the new dimensions. By forcing the WallpaperManager to forget the old Bitmap immediately before we reload it, we can ensure that we always have a Bitmap of the correct size. Bug: 10853302 Change-Id: I298ac5f3f8bcde54eeb1e45d21bf2ba3cbb618c9
| | * | | | am e1b6b6c5: Bring deleted files from the dead. These files were dropped by ↵Baligh Uddin2013-10-154-0/+145
| | |\ \ \ \ | | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the translation pipelines because they do not contain any translated elements, but in reality they are needed. * commit 'e1b6b6c5816b321864b6a5d72a46860fda8fa7cd': Bring deleted files from the dead. These files were dropped by the translation pipelines because they do not contain any translated elements, but in reality they are needed.
| | | * | | Bring deleted files from the dead.Baligh Uddin2013-10-154-0/+145
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These files were dropped by the translation pipelines because they do not contain any translated elements, but in reality they are needed. Bug: 11226380
* | | | | | am 35077089: am d5bda747: am 2cc95775: Merge "Fix possible crash in System ↵Jim Miller2013-10-151-0/+3
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | UI" into klp-dev * commit '3507708905e2d4aced05ece0d157ee9def40b624': Fix possible crash in System UI
| * | | | | am d5bda747: am 2cc95775: Merge "Fix possible crash in System UI" into klp-devJim Miller2013-10-151-0/+3
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | * commit 'd5bda747971db5fc2dde78dcc5bb42e62659667d': Fix possible crash in System UI
| | * | | | am 2cc95775: Merge "Fix possible crash in System UI" into klp-devJim Miller2013-10-151-0/+3
| | |\ \ \ \ | | | |/ / / | | | | | | | | | | | | | | | | | | * commit '2cc95775750ccd46f3192c05804c38dc04c5d2d6': Fix possible crash in System UI
| | | * | | Merge "Fix possible crash in System UI" into klp-devJim Miller2013-10-151-0/+3
| | | |\ \ \ | | | | |_|/ | | | |/| |
| | | | * | Fix possible crash in System UIJim Miller2013-10-151-0/+3
| | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | Fixes bug 11215581 Change-Id: Ic76ad783729316539e8e57feb098d6e823b4ecdf
* | | | | am 08ef4050: am de70a7c3: am 709827cd: Merge "Updated rssi assets for quick ↵Daniel Sandler2013-10-1548-0/+0
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | settings" into klp-dev * commit '08ef4050ed9a93563baafa35f312cdb071a57c07': Updated rssi assets for quick settings
| * | | | am de70a7c3: am 709827cd: Merge "Updated rssi assets for quick settings" ↵Daniel Sandler2013-10-1548-0/+0
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | into klp-dev * commit 'de70a7c3346534855219c4219db8ce4ad9c89214': Updated rssi assets for quick settings
| | * | | am 709827cd: Merge "Updated rssi assets for quick settings" into klp-devDaniel Sandler2013-10-1548-0/+0
| | |\ \ \ | | | |/ / | | | | | | | | | | | | | | | * commit '709827cd69edfd4c293ae80aac4eba647e668873': Updated rssi assets for quick settings
| | | * | Merge "Updated rssi assets for quick settings" into klp-devDaniel Sandler2013-10-1548-0/+0
| | | |\ \
| | | | * | Updated rssi assets for quick settingsDaniel Sandler2013-10-1548-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 10641374 Change-Id: I6b1bc9b0e86be331b71614b511026a67bc429031
| | * | | | am 5a736fcd: Merge "Adding a missing resource file." into klp-devSvetoslav Ganov2013-10-151-0/+33
| | |\ \ \ \ | | | |/ / / | | | | | | | | | | | | | | | | | | * commit '5a736fcd203f67c1d4d072fc4e96bb123d083800': Adding a missing resource file.
| | | * | | Merge "Adding a missing resource file." into klp-devSvetoslav Ganov2013-10-151-0/+33
| | | |\ \ \ | | | | |/ / | | | |/| |
| | | | * | Adding a missing resource file.Svetoslav Ganov2013-10-151-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a resource file cotaining the media sizes for the Catalan locale. Without it the print spooler crashes all the time for that locale since it cannot construct the PDF printer correctly. bug:11226380 Change-Id: I7fa9c9bf4ed073e5f4ddf0d0fe9de4998e3467d4
* | | | | | am 61cab9d3: am 334e3d7c: am ee8ee0ee: Merge "Put DessertCase on a diet." ↵Daniel Sandler2013-10-152-7/+24
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into klp-dev * commit '61cab9d3ff87278ca58cf7a8956fba6e845a4714': Put DessertCase on a diet.
| * | | | | am 334e3d7c: am ee8ee0ee: Merge "Put DessertCase on a diet." into klp-devDaniel Sandler2013-10-142-7/+24
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | * commit '334e3d7c3c8ca9042a57f287d82a3460ab496806': Put DessertCase on a diet.
| | * | | | am ee8ee0ee: Merge "Put DessertCase on a diet." into klp-devDaniel Sandler2013-10-142-7/+24
| | |\ \ \ \ | | | |/ / / | | | | | | | | | | | | | | | | | | * commit 'ee8ee0eeb8d61ab80981356c1a5683ae294f5233': Put DessertCase on a diet.
| | | * | | Merge "Put DessertCase on a diet." into klp-devDaniel Sandler2013-10-152-7/+24
| | | |\ \ \
| | | | * | | Put DessertCase on a diet.Daniel Sandler2013-10-152-7/+24
| | | | | |/ | | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - store desserts as ALPHA_8, saving 75% of bitmap memory - run DessertCase in its own process, avoiding bloating systemui every time the daydream or platlogo activity run - lock orientation in DessertCase to stop thrashing around when the device is rotated Bug: 10918599 Change-Id: Ia2fb0696b903ae355c75b53d3a0c45b70784d00c
* | | | | | am fc6625db: am 2399d6a4: am 7f988c2b: Merge "Don\'t move clock when warping ↵Jim Miller2013-10-151-10/+20
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in PagedView" into klp-dev * commit 'fc6625db32412e3416287d160d2334e25a36d37f': Don't move clock when warping in PagedView
| * | | | | am 2399d6a4: am 7f988c2b: Merge "Don\'t move clock when warping in ↵Jim Miller2013-10-141-10/+20
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PagedView" into klp-dev * commit '2399d6a4f0d14e118ab706777753d3e2a5657dbc': Don't move clock when warping in PagedView
| | * | | | am 7f988c2b: Merge "Don\'t move clock when warping in PagedView" into klp-devJim Miller2013-10-141-10/+20
| | |\ \ \ \ | | | |/ / / | | | | | | | | | | | | | | | | | | * commit '7f988c2bbb0dfe5063c5a6ef423f5843b2a1bbb5': Don't move clock when warping in PagedView
| | | * | | Merge "Don't move clock when warping in PagedView" into klp-devJim Miller2013-10-151-10/+20
| | | |\ \ \
| | | | * | | Don't move clock when warping in PagedViewJim Miller2013-10-141-10/+20
| | | | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a bug where the clock would appear to move when flinging the camera widget while warping. To accomplish this, it no longer scrolls while warping but rather updates the warp view's translationX. When the finger is released or a fling happens, we either smoothly animate the view back (without scrolling) or update the scroll position and let the scroller take over the animation. Fixes bug 11191094 Change-Id: I33f087cf4fb2ec31db11d69d11055b513604b1d1
* | | | | | am a3378956: am 2c163ee4: am 1e639d2d: Merge "Update the message for ↵Svetoslav2013-10-151-4/+11
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unavailable printers." into klp-dev * commit 'a337895682d86e9d71b04562a8b6e0dae889c8ac': Update the message for unavailable printers.
| * | | | | am 2c163ee4: am 1e639d2d: Merge "Update the message for unavailable ↵Svetoslav2013-10-141-4/+11
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | printers." into klp-dev * commit '2c163ee4eb1e1ec835bba1c906e4ba1f86983c46': Update the message for unavailable printers.
| | * | | | am 1e639d2d: Merge "Update the message for unavailable printers." into klp-devSvetoslav2013-10-141-4/+11
| | |\ \ \ \ | | | |/ / / | | | | | | | | | | | | | | | | | | * commit '1e639d2d77dc225a6d5f191ce97561f1b987e402': Update the message for unavailable printers.
| | | * | | Merge "Update the message for unavailable printers." into klp-devSvetoslav2013-10-151-4/+11
| | | |\ \ \
| | | | * | | Update the message for unavailable printers.Svetoslav2013-10-141-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a printer disappears or we do not get its capabilities, we show the user a message that the printer is unavailable. This message was appended after the printer name but they tend to be very long and the user does not see that the printer is not available due to ellipsis. Now we append the message after the subtitle which tends to be much shorter. bug:10983508 Change-Id: Ib3f7ad3bd82ff6decd49dc45461fb5131338e8c2