Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some minor fixes + tuner enhancement #71

Open
wants to merge 41 commits into
base: pie
Choose a base branch
from

Conversation

sayan7848
Copy link

Kindly ignore the substratum revert commits

sayan7848 and others added 27 commits September 2, 2019 17:57
This reverts commit 9bffddf.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit d2ec68f.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
…lSession API"

This reverts commit 1e5a056.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 0985d21.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit a96bc59.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
…ntions"

This reverts commit 78f5ec4.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 005ac3b.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 6228e45.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit db91569.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 5251d7b.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 8ec1689.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 0689655.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit f9e2693.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 679242c.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 0914a6c.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 2986abb.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
Make the tile active only in a state different than its
"normal" state (ring). When it's in normal state, no need
to draw any attention to it.

Change-Id: I20c20c7c2a05ebe92e887c023e792ad47ad5bbfa
Signed-off-by: sayan7848 <sayan7848@gmail.com>
by default battery percent display in status bar is forced
on keyguard when charging

Change-Id: Icff8177fff2934123103cdbc6a931f2c2db9bfd6
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Change-Id: I80c0f6d0551cc6ae792e4b8238ca379fef697882
Signed-off-by: sayan7848 <sayan7848@gmail.com>
or always with a tuner switch

Change-Id: Iaec202d98f117b7d745e44b5302367d9a8189fea
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Change-Id: I588e971adaa3bd3c0a7547de9c2b54304ba8f7e8
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Android P gets a new QS layout that looks good
but it has some issues on smaller screens devices,
like the rounded buttons clipping with the borders
and the date not looking really good.
LineageOS suggested a fix (https://review.lineageos.org/224021)
but it's circumventing it because it adds padding
 and some people doesn't like the padding, so, instead
let's apply the 8dp spacing over the affected headers
and the small qs tile.

Change-Id: I4c01945bfb3d9f58f10cd7deb392a2d40bc50289
Signed-off-by: VenkatVishalV <venkatvishal124@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 258d168.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 1c50f8b.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
Change-Id: I1e8802e25128fddc6dcd6e3854e8bcdc795980f4
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Change-Id: Ib1a2a384dc4d0061236793ecaa604f0f47bb10fc
Signed-off-by: mydongistiny <jaysonedson@gmail.com>
Signed-off-by: DennySPB <dennyspb@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 6aa6203.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit d7687ca.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 471195f.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
This reverts commit 339db83.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
A nullpointer exception occured when opening LiquidLounge>StatusBar or LiquidLounge>Notifications for the first time after a clean flash. This is a stopgap fix until we figure out the real reason behind the exception.

Signed-off-by: sayan7848 <sayan7848@gmail.com>
mihaipopa12 and others added 3 commits October 3, 2019 17:09
The CL fixes a crash in Layout.primaryIsTrailingPreviousAllLineOffsets.
The crash was happening when the method was called for a line beginning
with an empty bidi run. This could happen, for example, for empty text -
I was unable to find any other case. The CL improves the existing test
for the method with this case, which was previously crashing.

The CL also fixes a potential crash in getLineHorizontals. However, this
bug could never happen as in the current code path clamped is always
false (and kept as parameter for parity with getHorizontal).

Bug: 135444178
Bug: 78464361
Test: atest FrameworksCoreTests:android.text.LayoutTest\#testPrimaryIsTrailingPrevious
Change-Id: I47157abe1d74675884734e3810628a566e40c1b4
(cherry picked from commit 7ad499d)
(cherry picked from commit 9109ce6)
HidHostService allow to connect when priority is PRIORITY_UNDEFINED.
HidProfile should return ture when priority is PRIORITY_UNDEFINED.
Otherwise, the "Input device" toggle in off state when HID device
connected.

Bug: 132456322
Test: manual
Change-Id: Id7bae694c57aec17e019d591c0a677e3cb64f845
(cherry picked from commit 830217f)
The function 'checkAccess' recieves the uid and pid in that order and
forwards them to checkSlicePermission in the same order. However,
checkSlicePermission expects them in the opposite order.

Bug: 135551349
Test: atest FrameworksUiServicesTests
Change-Id: I6e49efeab08f0e2a29d9830e6f81905598ae410c
(cherry picked from commit d2432fc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
5 participants