Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d44ddac authored by Steve Kondik's avatar Steve Kondik Committed by Scott Mertz
Browse files

perf: Add support for additional power profiles

 * Add support for bias power (efficiency) and bias performance (quick)
   modes if supported by a device.

Change-Id: I428ddf35e3d35bd1ae5f3b0f8ed8e6d91ed9f96c
parent 3cf6b3c1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -228,6 +228,8 @@
    <string name="perf_profile_pwrsv">Power save</string>
    <string name="perf_profile_bal">Balanced</string>
    <string name="perf_profile_perf">Performance</string>
    <string name="perf_profile_bias_power">Efficiency</string>
    <string name="perf_profile_bias_perf">Quick</string>

    <!-- Theme installation error notification -->
    <string name="theme_install_error_title">Failed to install theme</string>
+0 −6
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="250"
        android:propertyName="rotation"
        android:valueFrom="-225"
        android:valueTo="-135"/>
 No newline at end of file
+0 −6
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="250"
        android:propertyName="rotation"
        android:valueFrom="-135"
        android:valueTo="-45"/>
 No newline at end of file
+0 −6
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="400"
        android:propertyName="rotation"
        android:valueFrom="-45"
        android:valueTo="-225"/>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
        android:name="needle"
        android:pivotX="24"
        android:pivotY="24"
        android:rotation="-225">
        android:rotation="-135">

        <path
            android:strokeColor="#FFFFFFFF"
Loading