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

Commit 04471e5d authored by stefan-niedermann's avatar stefan-niedermann
Browse files

Update changelog

parent 11c3df9f
Loading
Loading
Loading
Loading
+21 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?><!-- Selector is used for Background Colors in List Items -->
<ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="@color/bg_highlighted">
    <!-- :selected -->


    <item>
        <selector>
            <item android:state_selected="true">
                <color android:color="@color/bg_highlighted" />
            </item>

            <item android:state_activated="true">
                <color android:color="@color/bg_highlighted" />
            </item>

            <item>
                <color android:color="@color/bg_normal" />
            </item>
        </selector>
    </item>
</ripple>
 No newline at end of file
+9 −10
Original line number Original line Diff line number Diff line
@@ -17,11 +17,11 @@
        android:contentDescription="@string/menu_favorite"
        android:contentDescription="@string/menu_favorite"
        app:srcCompat="@drawable/ic_star_white_24dp" />
        app:srcCompat="@drawable/ic_star_white_24dp" />


    <androidx.appcompat.widget.AppCompatImageView
    <ImageView
        android:id="@+id/noteDeleteRight"
        android:id="@+id/noteDeleteRight"
        android:layout_width="32dp"
        android:layout_width="32dp"
        android:layout_height="32dp"
        android:layout_height="32dp"
        android:layout_gravity="right|end|center_vertical"
        android:layout_gravity="end|center_vertical"
        android:layout_marginEnd="@dimen/button_padding"
        android:layout_marginEnd="@dimen/button_padding"
        android:layout_marginRight="@dimen/button_padding"
        android:layout_marginRight="@dimen/button_padding"
        android:contentDescription="@string/menu_delete"
        android:contentDescription="@string/menu_delete"
@@ -46,7 +46,6 @@
                android:layout_height="match_parent"
                android:layout_height="match_parent"
                tools:src="@drawable/ic_star_yellow_24dp"/>
                tools:src="@drawable/ic_star_yellow_24dp"/>



            <androidx.appcompat.widget.AppCompatImageView
            <androidx.appcompat.widget.AppCompatImageView
                android:id="@+id/noteStatus"
                android:id="@+id/noteStatus"
                android:layout_width="wrap_content"
                android:layout_width="wrap_content"
@@ -66,14 +65,15 @@
            android:layout_height="wrap_content"
            android:layout_height="wrap_content"
            android:paddingTop="16dp"
            android:paddingTop="16dp"
            android:paddingRight="16dp"
            android:paddingRight="16dp"
            android:paddingEnd="16dp"
            android:paddingLeft="0dp"
            android:paddingStart="0dp"
            android:paddingBottom="16dp"
            android:paddingBottom="16dp"
            android:orientation="vertical"
            android:orientation="vertical">
            android:background="@drawable/list_item_background_selector">


            <androidx.appcompat.widget.LinearLayoutCompat
            <androidx.appcompat.widget.LinearLayoutCompat
                android:layout_width="match_parent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_height="wrap_content">
                android:background="@drawable/list_item_background_selector">


                <TextView
                <TextView
                    android:id="@+id/noteTitle"
                    android:id="@+id/noteTitle"
@@ -89,9 +89,7 @@


            <androidx.appcompat.widget.LinearLayoutCompat
            <androidx.appcompat.widget.LinearLayoutCompat
                android:layout_width="match_parent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_height="wrap_content">
                android:background="@drawable/list_item_background_selector">



                <TextView
                <TextView
                    android:id="@+id/noteExcerpt"
                    android:id="@+id/noteExcerpt"
@@ -133,6 +131,7 @@
    <ImageView
    <ImageView
        android:layout_width="match_parent"
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_height="1px"
        android:contentDescription="@null"
        android:src="@color/separator" />
        android:src="@color/separator" />


</FrameLayout>
</FrameLayout>
+1 −1
Original line number Original line Diff line number Diff line
@@ -6,7 +6,7 @@


    <color name="separator">#262626</color>
    <color name="separator">#262626</color>


    <color name="bg_highlighted">#111</color>
    <color name="bg_highlighted">#060606</color>
    <color name="bg_normal">#222222</color>
    <color name="bg_normal">#222222</color>
    <color name="bg_attention">#ff3333</color>
    <color name="bg_attention">#ff3333</color>
    <color name="fg_default">#eeeeee</color>
    <color name="fg_default">#eeeeee</color>
+1 −1
Original line number Original line Diff line number Diff line
@@ -7,7 +7,7 @@


    <color name="separator">#fbfbfb</color>
    <color name="separator">#fbfbfb</color>


    <color name="bg_highlighted">#f3f3f3</color>
    <color name="bg_highlighted">#eee</color>
    <color name="bg_normal">#ffffff</color>
    <color name="bg_normal">#ffffff</color>
    <color name="bg_attention">#d40000</color>
    <color name="bg_attention">#d40000</color>
    <color name="bg_warning">#ffcc00</color>
    <color name="bg_warning">#ffcc00</color>
+2 −1
Original line number Original line Diff line number Diff line
- Disable accountchooser after added a new account
- Disable accountchooser after added a new account
- Enable ripple effect on selecting a note
 No newline at end of file
+1 −1

File changed.

Contains only whitespace changes.

Loading